-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
76 lines (76 loc) · 2.1 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
{
"type": "module",
"private": true,
"packageManager": "[email protected]",
"scripts": {
"build": "vite build",
"build:ssg": "vite-ssg build",
"dev": "vite --port 3333 --open --host",
"lint": "eslint .",
"preview": "vite preview",
"preview-https": "serve dist",
"postinstall": "npx simple-git-hooks",
"test": "vitest",
"test:unit": "vitest",
"typecheck": "vue-tsc --noEmit",
"sizecheck": "npx vite-bundle-visualizer"
},
"dependencies": {
"@unhead/vue": "^1.11.2",
"@vueuse/core": "^11.0.3",
"@vueuse/head": "^2.0.0",
"nprogress": "^0.2.0",
"pinia": "^2.2.2",
"vue": "^3.5.4",
"vue-demi": "^0.14.10",
"vue-i18n": "^10.0.1",
"vue-router": "^4.4.4"
},
"devDependencies": {
"@antfu/eslint-config": "^3.6.0",
"@iconify-json/carbon": "^1.2.1",
"@iconify-json/ri": "^1.2.0",
"@intlify/unplugin-vue-i18n": "^5.0.0",
"@types/markdown-it-link-attributes": "^3.0.5",
"@types/node": "^22.5.4",
"@types/nprogress": "^0.2.3",
"@vitejs/plugin-legacy": "^5.4.2",
"@vitejs/plugin-vue": "^5.1.3",
"@vue/test-utils": "^2.4.6",
"critters": "^0.0.24",
"cross-env": "^7.0.3",
"eslint": "^9.10.0",
"https-localhost": "^4.7.1",
"lint-staged": "^15.2.10",
"markdown-it-link-attributes": "^4.0.1",
"markdown-it-shikiji": "^0.10.2",
"sass": "^1.78.0",
"shiki": "^1.17.0",
"simple-git-hooks": "^2.11.1",
"terser": "^5.32.0",
"typescript": "^5.5.4",
"unocss": "^0.62.3",
"unplugin-auto-import": "^0.18.3",
"unplugin-vue-components": "^0.27.4",
"unplugin-vue-markdown": "^0.26.2",
"unplugin-vue-router": "^0.10.8",
"vite": "^5.4.4",
"vite-bundle-visualizer": "^1.2.1",
"vite-plugin-inspect": "^0.8.7",
"vite-plugin-vue-layouts": "^0.11.0",
"vite-ssg": "^0.23.8",
"vite-ssg-sitemap": "^0.8.1",
"vitest": "^2.1.0",
"vue-gtag-next": "^1.14.0",
"vue-tsc": "^2.1.6"
},
"resolutions": {
"@typescript-eslint/utils": "^8.5.0"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*": "eslint --fix"
}
}