-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
87 lines (87 loc) · 1.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
{
"name": "io.osis.fit",
"version": "1.1.0",
"private": true,
"scripts": {
"serve": "export NODE_OPTIONS=--openssl-legacy-provider && vue-cli-service serve",
"build": "export NODE_OPTIONS=--openssl-legacy-provider && vue-cli-service build",
"lint": "vue-cli-service lint"
},
"dependencies": {
"@mdi/font": "^3.6.95",
"core-js": "^3.27.2",
"nprogress": "^0.2.0",
"register-service-worker": "^1.7.2",
"roboto-fontface": "*",
"vue": "^2.7.14",
"vue-cookies": "^1.8.2",
"vue-i18n": "^8.28.2",
"vue-notification": "^1.3.20",
"vue-quaggajs": "^1.0.10",
"vue-router": "^3.6.5",
"vuetify": "^2.6.14",
"vuex": "^3.6.2"
},
"devDependencies": {
"@vue/cli-plugin-babel": "^4.5.19",
"@vue/cli-plugin-eslint": "^4.5.19",
"@vue/cli-plugin-pwa": "^4.5.19",
"@vue/cli-service": "^4.5.19",
"@vue/eslint-config-standard": "^4.0.0",
"axios": "^0.19.2",
"babel-eslint": "^10.1.0",
"eslint": "^5.16.0",
"eslint-plugin-vue": "^5.0.0",
"sass": "~1.29.0",
"sass-loader": "^8.0.2",
"vue-cli-plugin-vuetify": "^1.1.2",
"vue-template-compiler": "^2.7.14",
"vuetify-loader": "^1.9.2",
"webpack-bundle-analyzer": "^3.9.0"
},
"eslintConfig": {
"root": true,
"env": {
"node": true
},
"extends": [
"plugin:vue/essential",
"@vue/standard"
],
"rules": {
"indent": [
"error",
2
],
"vue/no-unused-components": "warn",
"curly": [
"error",
"multi-line"
],
"vue/html-indent": [
"warn",
"number",
{
"attribute": 1,
"baseIndent": 1,
"closeBracket": 0,
"alignAttributesVertically": true,
"ignores": []
}
],
"no-unused-vars": "warn"
},
"parserOptions": {
"parser": "babel-eslint"
}
},
"postcss": {
"plugins": {
"autoprefixer": {}
}
},
"browserslist": [
"> 1%",
"last 2 versions"
]
}