forked from xubaobao19940428/vue3-admin-vite-project
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
80 lines (80 loc) · 2.17 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
{
"version": "0.0.0",
"license": "ISC",
"scripts": {
"dev": "vite",
"build": "vite build --mode test",
"build:pre": "vite build --mode pre",
"build:prod": "vite build --mode production",
"serve": "vite preview",
"lint": "eslint src --fix --ext .ts,.tsx,.vue,.js,.jsx",
"prettier": "prettier --write .",
"prepare": "husky install"
},
"dependencies": {
"@element-plus/icons-vue": "^2.0.9",
"@vue-flow/additional-components": "^1.3.3",
"@vue-flow/background": "^1.3.0",
"@vue-flow/controls": "^1.1.2",
"@vue-flow/core": "^1.39.3",
"@vue-flow/minimap": "^1.5.0",
"@wangeditor/core": "^1.1.19",
"@wangeditor/editor": "^5.1.23",
"@wangeditor/editor-for-vue": "^5.1.12",
"axios": "^0.24.0",
"echarts": "^5.4.3",
"element-plus": "^2.2.16",
"fast-glob": "^3.3.2",
"js-md5": "^0.7.3",
"lodash": "^4.17.21",
"magic-string": "^0.30.11",
"nprogress": "^0.2.0",
"pinia": "^2.0.0-rc.10",
"screenfull": "^6.0.2",
"vfonts": "^0.1.0",
"vue": "^3.3.13",
"vue-router": "4"
},
"devDependencies": {
"@babel/types": "^7.16.0",
"@types/js-md5": "^0.4.3",
"@types/mockjs": "^1.0.10",
"@types/node": "^16.11.10",
"@types/nprogress": "^0.2.0",
"@typescript-eslint/eslint-plugin": "^5.4.0",
"@typescript-eslint/parser": "^5.4.0",
"@vitejs/plugin-vue": "^1.2.5",
"@vue/compiler-sfc": "^3.4.37",
"autoprefixer": "^10.4.0",
"dart-sass": "^1.25.0",
"eslint": "^8.3.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-vue": "^8.1.1",
"husky": "^7.0.4",
"lint-staged": "^12.1.2",
"mockjs": "^1.1.0",
"mrm": "^3.0.10",
"prettier": "^2.4.1",
"sass": "^1.44.0",
"typescript": "^4.5.2",
"vite": "^2.4.2",
"vite-plugin-components": "^0.13.3",
"vite-plugin-compression": "^0.3.6",
"vite-plugin-eslint": "^1.3.0",
"vite-plugin-style-import": "^2.0.0",
"vue-tsc": "^0.0.24"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx,vue,ts,tsx}": [
"yarn lint",
"prettier --write",
"git add"
]
}
}