-
Notifications
You must be signed in to change notification settings - Fork 78
/
package.json
84 lines (84 loc) · 2.27 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
{
"name": "sunrise",
"version": "0.1.0",
"private": true,
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"test:unit": "vue-cli-service test:unit",
"test:e2e": "vue-cli-service test:e2e",
"test:debug": "node --inspect-brk node_modules/.bin/vue-cli-service test:unit --no-cache --watch --runInBand",
"lint": "vue-cli-service lint",
"i18n:report": "vue-cli-service i18n:report --src \"./src/**/*.?(js|vue)\" --locales \"./src/locales/**/*.json\"",
"start": "vue-cli-service serve"
},
"dependencies": {
"@apollo/client": "^3.5.8",
"@fawmi/vue-google-maps": "^0.9.4",
"@vue/apollo-composable": "^4.0.0-alpha.16",
"@vuelidate/core": "^2.0.0-alpha.34",
"@vuelidate/validators": "^2.0.0-alpha.26",
"core-js": "^3.6.5",
"graphql": "^16.3.0",
"graphql-tag": "^2.12.6",
"isomorphic-fetch": "^3.0.0",
"js-base64": "^3.7.2",
"vue": "^3.0.0",
"vue-i18n": "^9.2.0-beta.30",
"vue-router": "^4.0.12",
"vueperslides": "^3.3.2"
},
"devDependencies": {
"@cypress/webpack-preprocessor": "^5.11.1",
"@intlify/vue-i18n-loader": "^3.0.0",
"@vue/cli-plugin-babel": "^5.0.8",
"@vue/cli-plugin-e2e-cypress": "^5.0.3",
"@vue/cli-plugin-eslint": "^5.0.8",
"@vue/cli-plugin-unit-jest": "^5.0.8",
"@vue/cli-service": "^5.0.8",
"@vue/compiler-sfc": "^3.0.0",
"@vue/test-utils": "^2.0.0-0",
"babel-eslint": "^10.1.0",
"cypress": "9.5.3",
"eslint": "7.32.0",
"eslint-plugin-vue": "^7.0.0",
"mocha-junit-reporter": "^2.0.2",
"mocha-multi-reporters": "^1.5.1",
"msw": "^0.36.8",
"sass": "^1.49.7",
"sass-loader": "^10",
"typescript": "~3.9.3",
"vue-cli-plugin-i18n": "^0.6.1",
"vue-jest": "^5.0.0-0"
},
"eslintConfig": {
"root": true,
"env": {
"node": true
},
"extends": [
"plugin:vue/vue3-essential",
"eslint:recommended"
],
"parserOptions": {
"parser": "babel-eslint"
},
"rules": {},
"overrides": [
{
"files": [
"**/__tests__/*.{j,t}s?(x)",
"**/tests/unit/**/*.spec.{j,t}s?(x)"
],
"env": {
"jest": true
}
}
]
},
"browserslist": [
"> 1%",
"last 2 versions",
"not dead"
]
}