-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
71 lines (71 loc) · 2.34 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
{
"name": "vue-antd-admin",
"version": "1.0.0",
"private": true,
"scripts": {
"prepare": "husky install",
"start": "vue-cli-service serve",
"build": "vue-cli-service build",
"analyze": "cross-env ANALYZE=1 vue-cli-service build",
"lint": "npm run lint:eslint && npm run lint:prettier && npm run lint:stylelint",
"lint:eslint": "eslint --fix --ext .vue,.js,.jsx src",
"lint:prettier": "prettier --write --loglevel warn src/**/*.{js,jsx,json,css,less,vue,html,md}",
"lint:stylelint": "stylelint --fix src/**/*.{vue,less,css} --cache --cache-location node_modules/.cache/stylelint/"
},
"dependencies": {
"ant-design-vue": "^1.7.5",
"axios": "^0.21.1",
"big.js": "^6.1.1",
"clipboard": "^2.0.6",
"core-js": "^3.14.0",
"js-cookie": "^2.2.1",
"md5": "^2.2.1",
"moment": "^2.27.0",
"nprogress": "^0.2.0",
"vue": "^2.6.14",
"vue-router": "^3.2.0",
"vue-svg-component-runtime": "^1.0.1",
"vuex": "^3.4.0"
},
"devDependencies": {
"@commitlint/cli": "^12.1.4",
"@commitlint/config-conventional": "^12.1.4",
"@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-prettier": "^6.0.0",
"babel-eslint": "^10.1.0",
"babel-plugin-dynamic-import-node": "^2.3.3",
"babel-plugin-import": "^1.13.0",
"chalk": "^4.1.1",
"chokidar": "^3.5.2",
"compression-webpack-plugin": "^6.1.1",
"cross-env": "^7.0.2",
"eslint": "^6.7.2",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-vue": "^6.2.2",
"fast-glob": "^3.2.7",
"html-webpack-plugin": "^4.3.0",
"husky": "^6.0.0",
"less": "^3.12.2",
"less-loader": "^6.2.0",
"lint-staged": "^10.5.4",
"mockjs": "^1.1.0",
"postcss-html": "^1.3.0",
"postcss-less": "^5.0.0",
"prettier": "^1.19.1",
"script-ext-html-webpack-plugin": "^2.1.4",
"stylelint": "^14.2.0",
"stylelint-config-html": "^1.0.0",
"stylelint-config-prettier": "^9.0.3",
"stylelint-config-recommended": "^6.0.0",
"stylelint-config-standard": "^24.0.0",
"stylelint-order": "^5.0.0",
"vue-eslint-parser": "^7.6.0",
"vue-svg-icon-loader": "^2.1.1",
"vue-template-compiler": "^2.6.14",
"webpack-bundle-analyzer": "^4.4.2"
}
}