forked from matthew1809/commercetools-algolia
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
98 lines (98 loc) · 2.91 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "sunrise",
"version": "0.1.0",
"private": true,
"scripts": {
"serve": "vue-cli-service serve",
"start": "vue-cli-service serve",
"build": "vue-cli-service build",
"lint": "vue-cli-service lint",
"test:unit": "vue-cli-service test:unit",
"test:e2e": "vue-cli-service test:e2e",
"i18n:report": "vue-cli-service i18n:report --src './src/**/*.?(js|vue)' --locales './src/locales/**/*.json'",
"now-build": "yarn build"
},
"dependencies": {
"@babel/plugin-proposal-optional-chaining": "^7.2.0",
"@commercetools/sdk-auth": "^1.5.0",
"algoliasearch": "^4.2.0",
"apollo-cache-inmemory": "^1.3.5",
"apollo-client": "^2.4.12",
"apollo-link": "^1.2.12",
"apollo-link-context": "^1.0.8",
"apollo-link-error": "^1.1.11",
"axios": "^0.19.1",
"babel-loader": "^8.0.2",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.3",
"global": "^4.4.0",
"graphql-tag": "^2.9.0",
"instantsearch.js": "^4.4.1",
"lodash.debounce": "^4.0.8",
"lodash.flatmap": "^4.5.0",
"lodash.isequal": "^4.5.0",
"prettier": "^2.0.5",
"register-service-worker": "^1.6.2",
"vue": "^2.6.10",
"vue-apollo": "^3.0.0-beta.11",
"vue-cli-plugin-apollo": "^0.17.2",
"vue-i18n": "^8.4.0",
"vue-instantsearch": "^2.7.0",
"vue-perfect-scrollbar": "^0.1.0",
"vue-product-zoomer": "^2.0.11",
"vue-router": "^3.0.3",
"vue-scrollto": "^2.17.1",
"vuelidate": "^0.7.4",
"vuex": "^3.3.0",
"vuex-persistedstate": "^2.5.4",
"whatwg-fetch": "^3.0.0"
},
"devDependencies": {
"@cypress/webpack-preprocessor": "^4.0.2",
"@kazupon/vue-i18n-loader": "^0.3.0",
"@vue/cli-plugin-babel": "^3.9.0",
"@vue/cli-plugin-e2e-cypress": "^3.9.0",
"@vue/cli-plugin-eslint": "^3.9.0",
"@vue/cli-plugin-pwa": "^3.9.0",
"@vue/cli-plugin-unit-jest": "^3.9.0",
"@vue/cli-service": "^3.9.0",
"@vue/eslint-config-airbnb": "^4.0.0",
"@vue/test-utils": "1.0.0-beta.29",
"babel-core": "7.0.0-bridge.0",
"babel-eslint": "^10.1.0",
"babel-jest": "^23.6.0",
"babel-loader": "^8.0.2",
"eslint": "^6.8.0",
"eslint-plugin-graphql": "^2.1.1",
"eslint-plugin-vue": "^6.2.2",
"jest-fetch-mock": "^1.6.6",
"jest-junit": "^5.1.0",
"jest-localstorage-mock": "^2.2.0",
"jest-transform-graphql": "^2.1.0",
"lint-staged": "^8.1.5",
"mailslurp-client": "^6.7.4",
"mocha": "^5.2.0",
"mocha-junit-reporter": "^1.18.0",
"mocha-multi-reporters": "^1.1.7",
"sass": "^1.18.0",
"sass-loader": "^7.1.0",
"selectboxit": "^3.8.2",
"vue-cli-plugin-i18n": "^0.6.0",
"vue-cli-plugin-yaml": "^1.0.1",
"vue-template-compiler": "^2.6.10"
},
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.{js,vue}": [
"vue-cli-service lint",
"git add"
]
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 8"
]
}