forked from commercetools/sunrise-spa
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
98 lines (98 loc) · 2.99 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": "eslint \"./src/**/*.js\" && eslint --config ./.lintgql.js \"./src/**/*.gql\"",
"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": {
"@adyen/adyen-web": "^4.1.0",
"@babel/plugin-proposal-optional-chaining": "^7.12.1",
"@commercetools/sdk-auth": "^3.0.10",
"@vue/apollo-composable": "^4.0.0-alpha.12",
"@vue/composition-api": "^1.0.0-rc.5",
"apollo-cache-inmemory": "^1.6.6",
"apollo-client": "^2.6.10",
"apollo-link": "^1.2.14",
"apollo-link-context": "^1.0.20",
"apollo-link-error": "^1.1.13",
"axios": "^0.21.0",
"babel-loader": "^8.1.0",
"graphql-tag": "^2.11.0",
"lodash.debounce": "^4.0.8",
"lodash.flatmap": "^4.5.0",
"lodash.isequal": "^4.5.0",
"register-service-worker": "^1.7.1",
"uuid": "^8.3.2",
"vue": "^2.6.12",
"vue-apollo": "^3.0.5",
"vue-cli-plugin-apollo": "^0.22.2",
"vue-i18n": "^8.22.1",
"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.8",
"vue-scrollto": "^2.20.0",
"vue2-google-maps": "^0.10.7",
"vuelidate": "^0.7.6",
"vuex": "^3.5.1",
"vuex-persistedstate": "^4.0.0-beta.1",
"whatwg-fetch": "^3.4.1"
},
"devDependencies": {
"@cypress/webpack-preprocessor": "^5.4.8",
"@kazupon/vue-i18n-loader": "^0.5.0",
"@vue/cli-plugin-babel": "^4.5.8",
"@vue/cli-plugin-e2e-cypress": "^4.5.8",
"@vue/cli-plugin-eslint": "^4.5.8",
"@vue/cli-plugin-pwa": "^4.5.8",
"@vue/cli-plugin-unit-jest": "^4.5.8",
"@vue/cli-service": "^4.5.8",
"@vue/eslint-config-airbnb": "^5.1.0",
"@vue/test-utils": "1.1.3",
"babel-core": "7.0.0-bridge.0",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.6.1",
"babel-loader": "^8.1.0",
"eslint": "^7.12.1",
"eslint-plugin-graphql": "^4.0.0",
"eslint-plugin-vue": "^7.1.0",
"jest-fetch-mock": "^3.0.3",
"jest-junit": "^12.0.0",
"jest-localstorage-mock": "^2.4.3",
"jest-transform-graphql": "^2.1.0",
"lint-staged": "^10.5.0",
"mailslurp-client": "^11.3.0",
"mocha": "^8.2.0",
"mocha-junit-reporter": "^2.0.0",
"mocha-multi-reporters": "^1.1.7",
"sass": "^1.27.0",
"sass-loader": "^10.1.1",
"selectboxit": "^3.8.2",
"vue-cli-plugin-i18n": "^2.0.2",
"vue-cli-plugin-yaml": "^1.0.2",
"vue-template-compiler": "^2.6.12"
},
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.{js,vue}": [
"vue-cli-service lint",
"git add"
]
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 8"
]
}