-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
53 lines (53 loc) · 1.27 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
{
"name": "peridot",
"version": "0.1.0",
"private": true,
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"lint": "vue-cli-service lint --fix"
},
"dependencies": {
"@braid/vue-formulate": "^2.4.5",
"axios": "^0.21.1",
"buefy": "^0.9.4",
"glob-all": "^3.2.1",
"path": "^0.12.7",
"purgecss-webpack-plugin": "^3.1.3",
"register-service-worker": "^1.7.2",
"vue": "^2.6.12",
"vue-router": "^3.4.9",
"vuex": "^3.6.0",
"vuex-pathify": "^1.4.5",
"vuex-persistedstate": "^3.1.0"
},
"devDependencies": {
"@vue/cli-plugin-babel": "^4.5.9",
"@vue/cli-plugin-eslint": "^4.5.9",
"@vue/cli-plugin-pwa": "^4.5.9",
"@vue/cli-service": "^4.5.9",
"@vue/eslint-config-prettier": "^6.0.0",
"babel-eslint": "^10.1.0",
"eslint": "^7.15.0",
"eslint-plugin-prettier": "^3.3.0",
"eslint-plugin-vue": "^7.3.0",
"lint-staged": "^10.5.3",
"node-sass": "^5.0.0",
"prettier": "^2.2.1",
"sass-loader": "^10.1.0",
"vue-template-compiler": "^2.6.12"
},
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.js": [
"vue-cli-service lint",
"git add"
],
"*.vue": [
"vue-cli-service lint",
"git add"
]
}
}