forked from zce/dashboard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
92 lines (92 loc) · 2.14 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
{
"name": "dashboard",
"version": "0.1.0",
"private": true,
"description": "A dashboard scaffolding based on Vue.js created by Vue CLI.",
"keywords": [
"dashboard",
"scaffolding",
"vue",
"vue-cli",
"vue-i18n",
"vue-router",
"vuejs",
"vuex",
"zce"
],
"homepage": "https://github.com/zce/dashboard#readme",
"bugs": {
"url": "https://github.com/zce/dashboard/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zce/dashboard.git"
},
"license": "MIT",
"author": {
"name": "zce",
"email": "w@zce.me",
"url": "https://zce.me"
},
"main": "N/A",
"scripts": {
"lint": "vue-cli-service lint",
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"commit": "git-cz",
"release": "standard-version"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"lint-staged": {
"*.{js,vue}": "vue-cli-service lint"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"dependencies": {
"axios": "0.19.2",
"core-js": "3.6.5",
"element-ui": "2.13.2",
"nprogress": "0.2.0",
"store": "2.0.12",
"vue": "2.6.11",
"vue-i18n": "8.19.0",
"vue-router": "3.3.4",
"vuex": "3.5.1"
},
"devDependencies": {
"@commitlint/cli": "9.1.1",
"@commitlint/config-conventional": "9.1.1",
"@vue/cli-plugin-babel": "4.4.6",
"@vue/cli-plugin-eslint": "4.4.6",
"@vue/cli-service": "4.4.6",
"@vue/eslint-config-standard": "5.1.2",
"babel-eslint": "10.1.0",
"commitizen": "4.1.2",
"cz-conventional-changelog": "3.2.0",
"eslint": "7.5.0",
"eslint-plugin-import": "2.22.0",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-promise": "4.2.1",
"eslint-plugin-standard": "4.0.1",
"eslint-plugin-vue": "6.2.2",
"husky": "4.2.5",
"lint-staged": "10.2.11",
"sass": "1.26.10",
"sass-loader": "9.0.2",
"standard-version": "8.0.1",
"vue-template-compiler": "2.6.11"
}
}