-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.29 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
{
"name": "website",
"private": true,
"version": "0.0.0",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"prettier": "prettier --write '*.{tsx,ts,less,md,json,vue,css}'",
"precommit": "lint-staged"
},
"husky": {
"hooks": {
"pre-commit": "npm run precommit"
}
},
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.{ts,tsx,md,html,css,vue}": [
"git add",
"eslint",
"prettier --write"
],
"*.css": "stylelint",
"*.less": "stylelint --syntax=less"
},
"dependencies": {
"@wangeditor/editor": "^5.1.1",
"@wangeditor/editor-for-vue": "^5.1.11",
"minio": "^7.0.32",
"vue": "^3.2.25"
},
"devDependencies": {
"@types/node": "^20.6.0",
"@types/qs": "^6.9.7",
"@vitejs/plugin-vue": "^2.3.3",
"axios": "^0.27.2",
"element-plus": "^2.2.2",
"husky": "^8.0.1",
"js-md5": "^0.8.3",
"less": "^4.1.2",
"lint-staged": "^13.0.0",
"moment": "^2.29.3",
"particles.vue3": "^1.10.0",
"prettier": "^2.6.2",
"qs": "^6.11.0",
"typescript": "^4.5.4",
"unplugin-auto-import": "^0.8.6",
"unplugin-vue-components": "^0.19.6",
"vite": "^2.9.9",
"vue-router": "^4.0.15",
"vue-tsc": "^0.34.7",
"vuex": "^4.0.2"
}
}