-
Notifications
You must be signed in to change notification settings - Fork 59
/
package.json
73 lines (73 loc) · 2.14 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
{
"name": "vue3-admin",
"version": "0.0.0",
"private": true,
"scripts": {
"dev": "vite --mode development",
"dev:sit": "vite --mode sit",
"build": "vite build",
"build:dev": "vite build --mode development",
"build:sit": "vite build --mode sit",
"build:uat": "vite build --mode uat",
"build:pro": "vite build --mode production",
"preview": "vite preview",
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs --fix --ignore-path .gitignore",
"format": "prettier --write src/",
"prepare": "husky install",
"svgo": "svgo -f src/icons/svg --config=src/icons/svgo.config.js"
},
"dependencies": {
"@element-plus/icons-vue": "^2.1.0",
"@form-create/element-ui": "^3.2.1",
"@wangeditor/editor": "^5.1.23",
"@wangeditor/editor-for-vue": "next",
"axios": "^1.4.0",
"crypto-js": "^4.1.1",
"element-plus": "^2.3.8",
"husky": "^8.0.3",
"install": "^0.13.0",
"js-md5": "^0.8.3",
"lodash": "^4.17.21",
"moment": "^2.29.4",
"nprogress": "^0.2.0",
"path-browserify": "^1.0.1",
"pinia": "^2.1.6",
"pinia-plugin-persistedstate": "^3.2.0",
"qs": "^6.11.2",
"screenfull": "^6.0.2",
"vite-plugin-svg-icons": "^2.0.1",
"vue": "^3.3.4",
"vue-router": "^4.2.4",
"vxe-table": "^4.5.18",
"wangeditor": "^4.7.15"
},
"devDependencies": {
"@commitlint/cli": "^17.6.7",
"@commitlint/config-conventional": "^17.6.7",
"@rushstack/eslint-patch": "^1.3.2",
"@types/path-browserify": "^1.0.0",
"@vitejs/plugin-vue": "^4.2.3",
"@vitejs/plugin-vue-jsx": "^3.0.1",
"@vue/eslint-config-prettier": "^8.0.0",
"eslint": "^8.46.0",
"eslint-plugin-prettier": "v5.0.0-alpha.2",
"eslint-plugin-vue": "^9.16.1",
"lint-staged": "^13.2.3",
"prettier": "^2.8.8",
"sass": "^1.64.2",
"sass-loader": "^13.3.2",
"unplugin-auto-import": "^0.16.6",
"unplugin-vue-components": "^0.25.1",
"unplugin-vue-define-options": "^1.3.14",
"vite": "^4.4.8"
},
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.{js,jsx,vue}": [
"prettier --config .prettierrc --write",
"git add"
]
}
}