-
Notifications
You must be signed in to change notification settings - Fork 30
/
package.json
71 lines (71 loc) · 2.06 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": "vue3-element-admin",
"version": "0.0.0",
"scripts": {
"dev": "vite --host",
"build": "vite build",
"preview": "vite preview --host",
"prettier": "prettier \"{src,mock}/**/*.{vue,js}\" --write",
"lint:js": "eslint \"{src,mock}/**/*.{vue,js}\" ",
"lint:js-fix": "eslint \"{src,mock}/**/*.{vue,js}\" --fix",
"lint:css": "stylelint \"**/*.{vue,css,scss}\" --cache --cache-location node_modules/.cache/stylelint/",
"lint:css-fix": "stylelint \"**/*.{vue,css,scss}\" --cache --cache-location node_modules/.cache/stylelint/ --fix",
"test": "jest",
"prepare": "husky install"
},
"lint-staged": {
"*.{js,vue}": [
"npm run prettier",
"npm run lint:js-fix",
"npm run lint:css-fix",
"git add ."
]
},
"dependencies": {
"axios": "0.21.1",
"echarts": "5.1.1",
"element-plus": "1.0.2-beta.53",
"js-cookie": "2.2.1",
"mockjs": "1.1.0",
"nprogress": "0.2.0",
"screenfull": "5.1.0",
"vue": "3.2.2",
"vue-router": "4.0.4",
"vuex": "4.0.0"
},
"devDependencies": {
"@babel/core": "7.4.5",
"@babel/preset-env": "7.4.5",
"@commitlint/cli": "12.0.1",
"@commitlint/config-conventional": "12.0.1",
"@vitejs/plugin-vue": "1.1.4",
"@vue/compiler-sfc": "3.2.2",
"@vue/test-utils": "2.0.0-rc.6",
"autoprefixer": "9.8.6",
"babel-eslint": "10.1.0",
"babel-jest": "26.6.3",
"babel-plugin-transform-es2015-modules-commonjs": "6.26.2",
"cz-conventional-changelog": "3.3.0",
"eslint": "7.21.0",
"eslint-plugin-vue": "7.7.0",
"husky": "6.0.0",
"jest": "25.0.0",
"lint-staged": "10.5.4",
"prettier": "2.2.1",
"rollup-plugin-visualizer": "5.3.4",
"sass": "1.32.8",
"stylelint": "13.11.0",
"stylelint-config-prettier": "8.0.2",
"stylelint-config-standard": "20.0.0",
"stylelint-order": "4.1.0",
"vite": "2.3.8",
"vite-plugin-mock": "2.3.0",
"vue-jest": "5.0.0-alpha.7"
},
"license": "MIT",
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}