-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 1.76 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
{
"name": "dndbox",
"version": "0.1.0",
"private": true,
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"lint": "vue-cli-service lint"
},
"dependencies": {
"firebase": "^7.15.2",
"localforage": "^1.7.4",
"lodash-es": "^4.17.21",
"register-service-worker": "^1.7.1",
"v-hotkey": "^0.8.0",
"vue": "^2.6.11",
"vue-markdown": "^2.2.4",
"vuetify": "^2.6.10",
"vuex": "^3.4.0",
"vuex-persist": "^2.2.0"
},
"devDependencies": {
"@vue/cli-plugin-eslint": "~4.4.0",
"@vue/cli-plugin-pwa": "~4.4.0",
"@vue/cli-plugin-vuex": "~4.4.0",
"@vue/cli-service": "~5.0.8",
"@vue/eslint-config-prettier": "^6.0.0",
"eslint": "^6.7.2",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-vue": "^6.2.2",
"node-sass": "^7.0.0",
"prettier": "^1.19.1",
"sass": "^1.19.0",
"sass-loader": "^8.0.2",
"vue-cli-plugin-vuetify": "^2.0.5",
"vue-pwa-asset-generator": "^1.6.0",
"vue-template-compiler": "^2.6.11",
"vuetify-loader": "^1.3.0"
},
"eslintConfig": {
"root": true,
"env": {
"node": true
},
"extends": [
"plugin:vue/essential",
"eslint:recommended",
"@vue/prettier"
],
"parserOptions": {
"ecmaVersion": 2020
},
"rules": {
"vue/no-deprecated-slot-scope-attribute": "warn",
"vue/no-reserved-component-names": "warn",
"vue/no-restricted-syntax": "warn",
"vue/v-slot-style": "warn",
"vue/valid-v-slot": "warn",
"vue/require-v-for-key": "off",
"vue/eqeqeq": "error",
"prettier/prettier": [
"error",
{
"singleQuote": true
}
]
}
},
"browserslist": [
"> 1%",
"last 2 versions",
"not dead"
]
}