-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
94 lines (94 loc) · 2.78 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
{
"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.11.0",
"@commercetools/sdk-auth": "^3.0.8",
"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",
"graphql-tag": "^2.11.0",
"lodash.debounce": "^4.0.8",
"lodash.flatmap": "^4.5.0",
"lodash.isequal": "^4.5.0",
"register-service-worker": "^1.6.2",
"vue": "^2.6.10",
"vue-apollo": "^3.0.4",
"vue-cli-plugin-apollo": "^0.22.2",
"vue-i18n": "^8.20.0",
"vue-js-modal": "^2.0.0-rc.6",
"vue-owl-carousel": "^2.0.3",
"vue-perfect-scrollbar": "^0.2.1",
"vue-product-zoomer": "^3.0.1",
"vue-router": "^3.4.3",
"vue-scrollto": "^2.18.2",
"vue2-google-maps": "^0.10.7",
"vuelidate": "^0.7.4",
"vuex": "^3.0.1",
"vuex-persistedstate": "^3.1.0",
"whatwg-fetch": "^3.4.0"
},
"devDependencies": {
"@cypress/webpack-preprocessor": "^5.4.3",
"@kazupon/vue-i18n-loader": "^0.5.0",
"@vue/cli-plugin-babel": "^4.5.3",
"@vue/cli-plugin-e2e-cypress": "^4.5.3",
"@vue/cli-plugin-eslint": "^4.5.3",
"@vue/cli-plugin-pwa": "^4.5.3",
"@vue/cli-plugin-unit-jest": "^4.5.3",
"@vue/cli-service": "^4.5.3",
"@vue/eslint-config-airbnb": "^5.1.0",
"@vue/test-utils": "1.0.3",
"babel-core": "7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^26.3.0",
"babel-loader": "^8.0.2",
"eslint": "^7.6.0",
"eslint-plugin-graphql": "^4.0.0",
"eslint-plugin-vue": "^6.2.2",
"jest-fetch-mock": "^3.0.3",
"jest-junit": "^11.1.0",
"jest-localstorage-mock": "^2.4.3",
"jest-transform-graphql": "^2.1.0",
"lint-staged": "^10.2.11",
"mailslurp-client": "^8.7.8",
"mocha": "^8.1.1",
"mocha-junit-reporter": "^2.0.0",
"mocha-multi-reporters": "^1.1.7",
"sass": "^1.18.0",
"sass-loader": "^9.0.3",
"selectboxit": "^3.8.2",
"vue-cli-plugin-i18n": "^1.0.1",
"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"
]
}