-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
62 lines (62 loc) · 1.64 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": "jc-admin-template",
"version": "0.0.0",
"scripts": {
"dev": "vite",
"build": "vue-tsc --noEmit && vite build",
"preview": "vite preview",
"prepare": "husky install",
"lint-staged": "lint-staged"
},
"lint-staged": {
"*.{ts,js,vue}": [
"eslint --fix",
"git add ."
]
},
"dependencies": {
"@element-plus/icons-vue": "^1.0.0",
"@vee-validate/i18n": "^4.5.7",
"@vee-validate/rules": "^4.5.7",
"axios": "^0.24.0",
"element-plus": "^2.0.3",
"gsap": "^3.9.1",
"lodash": "^4.17.21",
"mockjs": "^1.1.0",
"pinia": "^2.0.9",
"vee-validate": "^4.5.7",
"vue": "^3.2.25",
"vue-router": "^4.0.12",
"yup": "^0.32.11"
},
"devDependencies": {
"@types/echarts": "^4.9.13",
"@types/lodash": "^4.14.178",
"@types/node": "^16.11.17",
"@typescript-eslint/eslint-plugin": "^5.6.0",
"@typescript-eslint/parser": "^5.6.0",
"@vitejs/plugin-vue": "^1.10.2",
"autoprefixer": "^10.4.0",
"eslint": "^8.4.1",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.3.0",
"eslint-define-config": "^1.2.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-vue": "^8.2.0",
"husky": "^7.0.0",
"lint-staged": "^12.1.2",
"path": "^0.12.7",
"postcss": "^8.4.5",
"prettier": "2.5.1",
"rollup-plugin-visualizer": "^5.6.0",
"sass": "^1.45.1",
"tailwindcss": "^3.0.7",
"typescript": "^4.4.4",
"unplugin-auto-import": "^0.6.1",
"unplugin-vue-components": "^0.17.21",
"vite": "^2.7.0",
"vite-plugin-mock": "^2.9.6",
"vue-eslint-parser": "^8.0.1",
"vue-tsc": "^0.28.10"
}
}