-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
95 lines (95 loc) · 2.7 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "blog",
"author": {
"name": "daixu",
"email": "[email protected]",
"url": "https://daixu.cn/"
},
"engines": {
"node": ">=18.16.0"
},
"scripts": {
"start": "vite",
"build": "vite build",
"preview": "vite preview",
"prettier": "prettier --write .",
"lint": "lint-staged",
"husky-install": "husky install && npx husky add .husky/commit-msg 'npm run lint && npx --no-install commitlint --edit $1'",
"commit": "cz"
},
"lint-staged": {
"*.{ts,js,json,css,scss,md,vue}": "prettier --write .",
"*.{ts,js,vue}": [
"eslint . --ext .vue,.js,.ts,.jsx,.tsx --fix"
]
},
"config": {
"commitizen": {
"path": "node_modules/cz-customizable"
}
},
"dependencies": {
"@element-plus/icons-vue": "^2.3.1",
"@formkit/auto-animate": "^0.8.2",
"@types/web-animations-js": "^2.2.16",
"@vavt/md-editor-extension": "^3.0.0",
"@vitejs/plugin-vue": "^4.6.2",
"axios": "^1.7.2",
"byte-size": "^8.1.1",
"dayjs": "^1.11.11",
"devtools-detector": "^2.0.18",
"element-plus": "^2.7.5",
"hls.js": "^1.5.11",
"lodash": "^4.17.21",
"lottie-web": "^5.12.2",
"md-editor-v3": "^4.16.9",
"nanoid": "^5.0.7",
"nprogress": "^0.2.0",
"nzh": "^1.0.12",
"path": "^0.12.7",
"pinia": "^2.1.7",
"pinia-plugin-persistedstate": "^3.2.1",
"plyr": "^3.7.8",
"query-string": "^9.0.0",
"screenfull": "^6.0.2",
"socket.io-client": "^4.7.5",
"spark-md5": "^3.0.2",
"tinycolor2": "^1.6.0",
"vite": "^4.5.3",
"vue": "^3.4.29",
"vue-router": "^4.3.3",
"web-animations-js": "^2.3.2"
},
"devDependencies": {
"@commitlint/cli": "^18.6.1",
"@commitlint/config-conventional": "^18.6.0",
"@iconify-json/ep": "^1.1.15",
"@types/node": "^20.14.2",
"@types/nprogress": "^0.2.3",
"@types/spark-md5": "^3.0.4",
"@types/tinycolor2": "^1.4.6",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"commitizen": "^4.3.0",
"cz-customizable": "^7.0.0",
"eslint": "^8.57.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-vue": "^9.26.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.5",
"prettier": "^3.3.2",
"sass": "^1.77.6",
"typescript": "^5.4.5",
"unplugin-auto-import": "^0.17.6",
"unplugin-icons": "^0.19.0",
"unplugin-vue-components": "^0.27.0",
"vite-plugin-compression": "^0.5.1",
"vite-plugin-progress": "^0.0.7",
"vite-plugin-vue-setup-extend": "^0.4.0",
"vue-tsc": "^2.0.21"
}
}