-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
85 lines (85 loc) · 2.25 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
{
"name": "vite-vue3",
"author": "Gavin",
"license": "MIT",
"version": "1.0.0",
"scripts": {
"dev": "vite",
"serve": "vite --host",
"build": "vite build",
"preview": "vite preview",
"cz": "git cz",
"prepare": "husky install",
"lint:lint-staged": "lint-staged",
"commitlint": "commitlint --config commitlint.config.js -e -V"
},
"dependencies": {
"@element-plus/icons-vue": "^0.2.4",
"axios": "^0.21.1",
"dayjs": "^1.10.6",
"echarts": "^5.2.2",
"element-plus": "^1.3.0-beta.1",
"js-cookie": "^3.0.0",
"lodash-es": "^4.17.21",
"nprogress": "^0.2.0",
"vue": "^3.2.6",
"vue-router": "4",
"vue-types": "^4.0.0",
"vuex": "^4.0.2"
},
"devDependencies": {
"@babel/preset-typescript": "^7.14.5",
"@commitlint/cli": "^12.1.4",
"@commitlint/config-conventional": "^12.1.4",
"@types/js-cookie": "^2.2.7",
"@types/lodash-es": "^4.17.4",
"@types/node": "^16.3.2",
"@types/nprogress": "^0.2.0",
"@types/webpack-env": "^1.16.2",
"@typescript-eslint/eslint-plugin": "^4.28.0",
"@typescript-eslint/parser": "^4.28.0",
"@vitejs/plugin-vue": "^1.2.3",
"@vue/compiler-sfc": "^3.1.5",
"autoprefixer": "^10.4.1",
"commitizen": "^4.2.4",
"cz-conventional-changelog": "3.3.0",
"cz-customizable": "^6.3.0",
"eslint": "^7.28.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-vue": "^7.11.1",
"husky": "^7.0.0",
"lint-staged": "^11.0.0",
"mockjs": "^1.1.0",
"postcss": "^8.4.5",
"postcss-import": "^14.0.2",
"prettier": "^2.3.1",
"pretty-quick": "^3.1.3",
"sass": "^1.35.1",
"stylelint": "^13.13.1",
"stylelint-config-prettier": "^8.0.2",
"stylelint-config-standard": "^22.0.0",
"stylelint-order": "^4.1.0",
"tailwindcss": "^3.0.9",
"typescript": "^4.3.2",
"vite": "^2.3.7",
"vite-plugin-mock": "^2.9.3",
"vite-plugin-style-import": "^1.0.1",
"vue-tsc": "^0.0.24"
},
"lint-staged": {
"*.{js,ts}": [
"prettier --write",
"eslint --fix"
],
"*.vue": [
"prettier --write",
"eslint --fix",
"stylelint --fix"
],
"*.{scss,html}": [
"stylelint --fix",
"prettier --write"
]
}
}