forked from zce/dashboard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
118 lines (118 loc) · 2.55 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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
{
"name": "dashboard",
"version": "0.1.0",
"private": true,
"description": "A dashboard scaffolding based on vue.js created by vuejs/vue-cli 3.x.",
"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": "src/main.js",
"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",
"git add"
]
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"babel": {
"presets": [
"@vue/cli-plugin-babel/preset"
]
},
"browserslist": [
"> 1%",
"last 2 versions"
],
"eslintConfig": {
"root": true,
"env": {
"node": true
},
"extends": [
"plugin:vue/essential",
"@vue/standard"
],
"rules": {},
"parserOptions": {
"parser": "babel-eslint"
}
},
"dependencies": {
"axios": "0.19.2",
"core-js": "3.6.4",
"element-ui": "2.13.0",
"nprogress": "0.2.0",
"store": "2.0.12",
"vue": "2.6.11",
"vue-i18n": "8.15.5",
"vue-router": "3.1.6",
"vuex": "3.1.3"
},
"devDependencies": {
"@commitlint/cli": "8.3.5",
"@commitlint/config-conventional": "8.3.4",
"@vue/cli-plugin-babel": "4.2.3",
"@vue/cli-plugin-eslint": "4.2.3",
"@vue/cli-service": "4.2.3",
"@vue/eslint-config-standard": "5.1.2",
"babel-eslint": "10.1.0",
"commitizen": "4.0.3",
"cz-conventional-changelog": "3.1.0",
"eslint": "6.8.0",
"eslint-plugin-import": "2.20.2",
"eslint-plugin-node": "11.0.0",
"eslint-plugin-promise": "4.2.1",
"eslint-plugin-standard": "4.0.1",
"eslint-plugin-vue": "6.2.2",
"husky": "4.2.3",
"lint-staged": "10.0.8",
"sass": "1.26.3",
"sass-loader": "8.0.2",
"standard-version": "7.1.0",
"vue-template-compiler": "2.6.11"
}
}