-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.03 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.03 KB
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
{
"name": "live-process-app",
"version": "0.1.0",
"private": true,
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"lint": "vue-cli-service lint && vue-cli-service lint ./*.js",
"deploy": "shipit prod deploy"
},
"dependencies": {
"animejs": "3.1.0",
"axios": "0.19.0",
"core-js": "3.2.1",
"imagesloaded": "4.1.4",
"vue": "2.6.10",
"vuex": "3.1.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.1",
"babel-eslint": "10.0.3",
"commander": "3.0.0",
"consola": "2.10.1",
"eslint": "6.2.2",
"eslint-plugin-vue": "5.2.3",
"lint-staged": "9.2.5",
"sass": "1.22.10",
"sass-loader": "7.3.1",
"shipit-deploy": "5.0.0",
"vue-template-compiler": "2.6.10"
},
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.{js,vue}": [
"vue-cli-service lint",
"git add"
]
}
}