-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 1.68 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
{
"name": "vue",
"displayName": "Vue",
"icon": "./public/favicon.png",
"version": "0.0.0-1",
"private": true,
"description": "Vue",
"keywords": [
"Vue",
"Vuex",
"Vue-Router",
"Vuetify",
"Axios"
],
"homepage": "https://github.com/flourigh/vue",
"qna": "https://social.redire.me/vue",
"bugs": "https://github.com/flourigh/vue/issues",
"repository": {
"type": "git",
"url": "https://github.com/flourigh/vue.git"
},
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"lint": "vue-cli-service lint",
"test": "serve -s dist",
"http": "ngrok http -host-header=rewrite",
"icon": "sh icon.sh"
},
"dependencies": {
"axios": "^0.19.2",
"core-js": "^3.6.4",
"crypto-js": "^3.3.0",
"firebase": "^7.9.2",
"register-service-worker": "^1.6.2",
"uuid": "^3.4.0",
"vue": "^2.6.11",
"vue-router": "^3.1.6",
"vuetify": "^2.2.15",
"vuex": "^3.0.1"
},
"devDependencies": {
"@vue/cli-plugin-babel": "^4.2.3",
"@vue/cli-plugin-eslint": "^4.2.3",
"@vue/cli-plugin-pwa": "^4.2.3",
"@vue/cli-service": "^4.2.3",
"babel-eslint": "^10.1.0",
"eslint": "^5.16.0",
"eslint-config-vuetify": "^0.4.1",
"eslint-plugin-vue": "^5.0.0",
"firebase-tools": "^7.14.0",
"lint-staged": "^9.5.0",
"sass": "^1.26.1",
"sass-loader": "^8.0.2",
"stylus": "^0.54.7",
"stylus-loader": "^3.0.2",
"vue-cli-plugin-vuetify": "^1.1.1",
"vue-template-compiler": "^2.6.11",
"vuetify-loader": "^1.4.3"
},
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.{js,vue}": [
"vue-cli-service lint",
"git add"
]
}
}