-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
executable file
·77 lines (77 loc) · 1.83 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
{
"name": "iART",
"version": "0.10.0",
"private": true,
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"lint": "vue-cli-service lint"
},
"dependencies": {
"@mdi/font": "^5.9.55",
"axios": "^0.21.1",
"core-js": "^3.15.2",
"density-clustering": "^1.3.0",
"hull.js": "^1.0.1",
"intro.js": "^4.3.0",
"jsts": "2.7.1",
"validator": "^13.6.0",
"vis-data": "^7.1.2",
"vis-network": "^9.0.4",
"vue": "^2.6.11",
"vue-async-computed": "^3.9.0",
"vue-i18n": "^8.24.5",
"vue-introjs": "^1.3.2",
"vue-router": "^3.5.2",
"vuetify": "2.4.4",
"vuex": "^3.6.2",
"vuex-persistedstate": "^4.0.0-beta.3"
},
"devDependencies": {
"@vue/cli-plugin-babel": "^4.5.13",
"@vue/cli-plugin-eslint": "^4.5.13",
"@vue/cli-plugin-router": "^4.5.13",
"@vue/cli-service": "^4.5.13",
"@vue/eslint-config-airbnb": "^5.0.2",
"babel-eslint": "^10.1.0",
"eslint": "^6.7.2",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-vue": "^6.2.2",
"sass": "^1.35.1",
"sass-loader": "^10.2.0",
"vue-template-compiler": "^2.6.11",
"vuetify-loader": "^1.7.2",
"webpack-cli": "^4.7.2"
},
"eslintConfig": {
"root": true,
"env": {
"node": true
},
"extends": [
"plugin:vue/essential",
"@vue/airbnb"
],
"parserOptions": {
"parser": "babel-eslint"
},
"rules": {
"no-underscore-dangle": "off",
"object-curly-newline": "off",
"vue/no-unused-vars": "off",
"no-param-reassign": "off",
"object-shorthand": "off",
"arrow-body-style": "off",
"no-console": "off",
"func-names": "off",
"no-shadow": "off",
"camelcase": "off",
"max-len": "off"
}
},
"browserslist": [
"> 1%",
"last 2 versions",
"not dead"
]
}