-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1000 Bytes
/
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
{
"name": "szpp-judge-frontend",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vue-tsc --noEmit && vite build",
"preview": "vite preview",
"prepare": "husky install"
},
"dependencies": {
"axios": "^1.1.3",
"element-plus": "^2.2.19",
"jszip": "^3.10.1",
"pinia": "^2.0.23",
"vue": "^3.2.41",
"vue-router": "^4.1.6",
"vue3-markdown-it": "^1.0.10"
},
"devDependencies": {
"@commitlint/cli": "^17.1.2",
"@commitlint/config-conventional": "^17.1.0",
"@iconify-json/ep": "^1.1.8",
"@vitejs/plugin-vue": "^3.1.2",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"prettier": "2.7.1",
"sass": "^1.55.0",
"typescript": "^4.8.4",
"unplugin-auto-import": "^0.11.3",
"unplugin-icons": "^0.14.12",
"unplugin-vue-components": "^0.22.9",
"vite": "^3.1.8",
"vue-tsc": "^1.0.9"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
}
}