-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
93 lines (93 loc) · 1.63 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
{
"name": "streaks",
"version": "0.1.0",
"private": true,
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"lint": "vue-cli-service lint"
},
"dependencies": {
"date-fns": "1.30.1",
"idb": "2.1.3",
"nanoid": "2.0.0",
"register-service-worker": "1.5.2",
"vue": "2.5.21",
"vue-router": "3.0.2",
"vuex": "3.0.1"
},
"devDependencies": {
"@vue/cli-plugin-babel": "3.2.2",
"@vue/cli-plugin-eslint": "3.2.2",
"@vue/cli-plugin-pwa": "3.2.2",
"@vue/cli-service": "3.2.2",
"lint-staged": "8.1.0",
"vue-template-compiler": "2.5.21"
},
"babel": {
"presets": [
"@vue/app"
]
},
"eslintConfig": {
"root": true,
"env": {
"node": true
},
"extends": [
"plugin:vue/essential",
"eslint:recommended"
],
"rules": {
"max-len": [
"warn",
{
"code": 120,
"tabWidth": 2
}
],
"quotes": [
"warn",
"single"
],
"semi": [
"warn",
"always"
]
},
"parserOptions": {
"parser": "babel-eslint"
}
},
"postcss": {
"plugins": {
"autoprefixer": {}
}
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 8"
],
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.js": [
"vue-cli-service lint",
"git add"
],
"*.vue": [
"vue-cli-service lint",
"git add"
]
},
"vue": {
"pwa": {
"workboxPluginMode": "InjectManifest",
"workboxOptions": {
"swSrc": "./src/sw.js"
}
}
}
}