forked from zhihuifanqiechaodan/vue3-admin-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.71 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
{
"name": "vue3-element-admin",
"private": true,
"version": "0.0.0",
"scripts": {
"serve": "vite --mode localhost",
"build:prod": "vite build --mode production",
"preview": "vite preview",
"deploy": "sh deploy.sh",
"eslint": "eslint --ext .vue,.js,.ts,.jsx,.tsx --fix",
"eslint-lint": "eslint --ext .vue,.js,.ts,.jsx,.tsx --fix .",
"prettier": "prettier --write \"./**/*.{html,vue,ts,js,json,md}\"",
"prettier-lint": "prettier --write \"./**/*.{html,vue,ts,js,json,md}\" ."
},
"dependencies": {
"@toast-ui/vue-editor": "^3.2.2",
"axios": "^1.3.2",
"clipboard": "^2.0.11",
"dom-to-image": "^2.6.0",
"element-plus": "^2.2.29",
"file-saver": "^2.0.5",
"fuse.js": "^6.6.2",
"js-cookie": "^3.0.1",
"normalize.css": "^8.0.1",
"nprogress": "^0.2.0",
"path-to-regexp": "^6.2.1",
"pinia": "^2.0.30",
"qrcode.vue": "^3.3.3",
"screenfull": "^6.0.2",
"socket.io-client": "^4.6.0",
"vue": "^3.2.47",
"vue-router": "^4.1.6",
"xlsx": "^0.18.5"
},
"devDependencies": {
"@vitejs/plugin-vue": "^4.0.0",
"eslint": "^8.33.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-vue": "^9.9.0",
"fast-glob": "^3.2.12",
"husky": "^8.0.3",
"path-browserify": "^1.0.1",
"prettier": "^2.8.4",
"sass": "^1.58.0",
"script-loader": "^0.7.2",
"vite": "^4.1.1",
"vite-plugin-svg-icons": "^2.0.1",
"vite-plugin-vue-setup-extend": "^0.4.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{vue,js,ts,jsx,tsx}": [
"npm run eslint"
],
"*.{html,vue,ts,js,json,md}": [
"npm run prettier"
]
}
}