-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.56 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
{
"type": "module",
"version": "0.4.0",
"private": true,
"packageManager": "[email protected]",
"scripts": {
"dev": "vite --port 3344 --open",
"build": "vite build",
"preview": "vite preview",
"lint": "eslint .",
"typecheck": "vue-tsc --noEmit",
"up": "npx taze major -I",
"cz": "czg",
"postinstall": "simple-git-hooks",
"version": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0 && git add CHANGELOG.md"
},
"dependencies": {
"@vueuse/core": "^11.2.0",
"element-plus": "^2.8.7",
"ofetch": "^1.4.1",
"pinia": "^2.2.6",
"vue": "^3.5.12",
"vue-router": "^4.4.5"
},
"devDependencies": {
"@antfu/eslint-config": "^3.8.0",
"@iconify-json/carbon": "^1.2.4",
"@types/node": "^22.9.0",
"@unocss/eslint-config": "^0.64.0",
"@unocss/reset": "^0.64.0",
"@vitejs/plugin-vue": "^5.1.5",
"conventional-changelog-cli": "^5.0.0",
"czg": "^1.11.0",
"eslint": "^9.14.0",
"eslint-plugin-format": "^0.1.2",
"lint-staged": "^15.2.10",
"sass": "^1.80.6",
"simple-git-hooks": "^2.11.1",
"typescript": "^5.6.3",
"unocss": "^0.64.0",
"unplugin-auto-import": "^0.18.3",
"unplugin-vue-auto-img": "^0.2.1",
"unplugin-vue-components": "^0.27.4",
"unplugin-vue-router": "^0.10.8",
"vite": "^5.4.10",
"vite-plugin-vue-layouts": "^0.11.0",
"vue-tsc": "^2.1.10"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged",
"commit-msg": "node scripts/verifyCommit.mjs"
},
"lint-staged": {
"*": "eslint --fix --ignore-pattern *.scss"
}
}