-
Notifications
You must be signed in to change notification settings - Fork 45
/
package.json
76 lines (76 loc) · 2.01 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
{
"name": "vue3-element-admin",
"private": true,
"version": "0.0.0",
"scripts": {
"dev": "vite --force --host --mode localhost",
"preview": "vite preview",
"build:prod": "vite build --mode production",
"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}\" .",
"prepare": "husky install"
},
"dependencies": {
"@toast-ui/vue-editor": "^3.2.3",
"@vueuse/core": "^10.4.1",
"axios": "^1.5.0",
"clipboard": "^2.0.11",
"dom-to-image": "^2.6.0",
"echarts": "^5.4.3",
"element-plus": "^2.3.12",
"file-saver": "^2.0.5",
"fuse.js": "^6.6.2",
"js-cookie": "^3.0.5",
"lodash-es": "^4.17.21",
"normalize.css": "^8.0.1",
"nprogress": "^0.2.0",
"path-to-regexp": "^6.2.1",
"pinia": "^2.1.6",
"qrcode.vue": "^3.4.1",
"screenfull": "^6.0.2",
"uuid": "^9.0.0",
"vue": "^3.3.4",
"vue-echarts": "^6.6.1",
"vue-i18n": "9",
"vue-router": "^4.2.4",
"vuedraggable": "^4.1.0",
"xlsx": "^0.18.5"
},
"devDependencies": {
"@vitejs/plugin-vue": "^4.3.4",
"eslint": "^8.48.0",
"eslint-config-prettier": "^8.10.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-vue": "^9.17.0",
"fast-glob": "^3.3.1",
"husky": "^8.0.3",
"path-browserify": "^1.0.1",
"prettier": "^2.8.8",
"sass": "^1.66.1",
"script-loader": "^0.7.2",
"unplugin-auto-import": "^0.15.3",
"unplugin-vue-components": "^0.24.1",
"vite": "^5.0.0",
"vite-plugin-inspect": "^0.7.40",
"vite-plugin-svg-icons": "^2.0.1"
},
"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"
]
},
"engines": {
"node": ">=18"
}
}