-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathpackage.json
62 lines (62 loc) Β· 1.74 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
{
"name": "ant-design-vue-pro-template",
"version": "3.0.0",
"private": true,
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"lint": "vue-cli-service lint",
"lint:check": "vue-cli-service lint --no-fix",
"analyz": "vue-cli-service build --mode analyz"
},
"dependencies": {
"@ant-design-vue/pro-layout": "^1.0.1-0",
"ant-design-vue": "^1.6.4",
"axios": "^0.19.2",
"core-js": "^3.6.5",
"mockjs": "^1.1.0",
"nprogress": "^0.2.0",
"store": "^2.0.12",
"vue": "^2.6.11",
"vue-i18n": "^8.20.0",
"vue-router": "^3.2.0",
"vue-svg-component-runtime": "^1.0.1",
"vuex": "^3.4.0"
},
"devDependencies": {
"@ant-design/colors": "^3.2.1",
"@ant-design/icons": "^2.1.1",
"@vue/cli-plugin-babel": "~4.4.0",
"@vue/cli-plugin-eslint": "~4.4.0",
"@vue/cli-plugin-router": "~4.4.0",
"@vue/cli-plugin-vuex": "~4.4.0",
"@vue/cli-service": "~4.4.0",
"@vue/eslint-config-standard": "^5.1.2",
"babel-eslint": "^10.1.0",
"babel-plugin-import": "^1.13.0",
"eslint": "^6.7.2",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.0",
"eslint-plugin-vue": "^6.2.2",
"git-revision-webpack-plugin": "^3.0.6",
"umi-mock-middleware": "^1.0.0",
"less": "^3.0.4",
"less-loader": "^5.0.0",
"lint-staged": "^9.5.0",
"vue-svg-icon-loader": "^2.1.1",
"vue-template-compiler": "^2.6.11",
"webpack-bundle-analyzer": "^3.8.0",
"webpack-theme-color-replacer": "^1.3.14"
},
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.{js,jsx,vue}": [
"vue-cli-service lint",
"git add"
]
}
}