-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathpackage.json
94 lines (94 loc) · 2.09 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": "vuetify-md-pro",
"version": "0.1.0",
"private": true,
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"lint": "vue-cli-service lint",
"fixerror": "eslint --fix --fix-type suggestion ."
},
"dependencies": {
"chartist": "^0.11.4",
"core-js": "^2.6.5",
"lodash": "^4.17.15",
"vee-validate": "^2.2.15",
"vue": "^2.6.10",
"vue-chartist": "^2.2.1",
"vue-i18n": "^8.14.1",
"vue-router": "^3.0.3",
"vue-world-map": "^0.1.1",
"vuetify": "^2.0.0",
"vuex": "^3.0.1"
},
"devDependencies": {
"@vue/cli-plugin-babel": "^3.11.0",
"@vue/cli-plugin-eslint": "^3.11.0",
"@vue/cli-service": "^3.11.0",
"@vue/eslint-config-airbnb": "^4.0.0",
"babel-eslint": "^10.0.1",
"eslint": "^5.16.0",
"eslint-plugin-vue": "^5.0.0",
"node-sass": "^4.9.0",
"sass": "^1.17.4",
"sass-loader": "^7.1.0",
"vue-cli-plugin-vuetify": "^0.6.3",
"vue-template-compiler": "^2.6.10",
"vuetify-loader": "^1.2.2"
},
"eslintConfig": {
"root": true,
"env": {
"node": true
},
"extends": [
"plugin:vue/essential",
"@vue/airbnb"
],
"rules": {
"indent": 0,
"comma-dangle": 0,
"quotes": 0,
"semi": 0,
"import/extensions": [
"off",
"always",
{
"js": "never",
"vue": "never"
}
],
"max-len": 0,
"eol-last": 0,
"global-require": 0,
"linebreak-style": 0,
"import/no-unresolved": 0,
"no-new": 0,
"operator-linebreak": 0,
"arrow-parens": 0,
"no-console": 0,
"no-param-reassign": 0,
"no-underscore-dangle": 0,
"space-before-function-paren": 0,
"object-shorthand": 0,
"func-names": 0,
"no-return-assign": 0,
"no-alert": 0,
"consistent-return": 0,
"no-plusplus": 0,
"no-else-return": 0
},
"parserOptions": {
"parser": "babel-eslint"
}
},
"postcss": {
"plugins": {
"autoprefixer": {}
}
},
"browserslist": [
"> 1%",
"last 2 versions"
]
}