-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
96 lines (96 loc) · 2.78 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
96
{
"type": "module",
"private": true,
"packageManager": "[email protected]",
"scripts": {
"build": "vite-ssg build",
"dev": "vite --port 3333",
"lint": "eslint .",
"preview": "vite preview",
"preview-https": "serve dist",
"preview-server": "cross-env NODE_ENV=production node ./dist/backend/main.js",
"test": "vitest",
"test:e2e": "cypress open",
"test:unit": "vitest",
"typecheck": "vue-tsc --noEmit",
"up": "taze major -I",
"postinstall": "npx simple-git-hooks",
"sizecheck": "npx vite-bundle-visualizer"
},
"dependencies": {
"@nailyjs/typeorm": "^2.0.20",
"@unhead/vue": "^1.11.11",
"@unocss/reset": "^0.62.4",
"@vueuse/core": "^11.2.0",
"@vueuse/head": "^2.0.0",
"nprogress": "^0.2.0",
"pinia": "^2.2.6",
"sqlite3": "^5.1.7",
"typeorm": "^0.3.20",
"vue": "^3.5.12",
"vue-demi": "^0.14.10",
"vue-i18n": "^9.14.1",
"vue-router": "^4.4.5"
},
"devDependencies": {
"@antfu/eslint-config": "^2.27.3",
"@iconify-json/carbon": "^1.2.4",
"@intlify/unplugin-vue-i18n": "^4.0.0",
"@nailyjs/backend": "^2.0.7",
"@nailyjs/config": "^2.0.6",
"@nailyjs/eslint": "^2.0.7",
"@nailyjs/ioc": "^2.0.5",
"@nailyjs/rpc": "^2.0.7",
"@shikijs/markdown-it": "^1.22.2",
"@types/markdown-it-link-attributes": "^3.0.5",
"@types/nprogress": "^0.2.3",
"@unocss/eslint-config": "^0.62.4",
"@vitejs/plugin-vue": "^5.1.4",
"@vue-macros/volar": "^0.27.4",
"@vue/test-utils": "^2.4.6",
"critters": "^0.0.24",
"cross-env": "^7.0.3",
"cypress": "^13.15.2",
"cypress-vite": "^1.5.0",
"eslint": "^9.14.0",
"eslint-plugin-cypress": "^3.6.0",
"eslint-plugin-format": "^0.1.2",
"https-localhost": "^4.7.1",
"lint-staged": "^15.2.10",
"markdown-it-link-attributes": "^4.0.1",
"pnpm": "^9.12.3",
"reflect-metadata": "^0.2.2",
"rollup": "^4.25.0",
"shiki": "^1.22.2",
"simple-git-hooks": "^2.11.1",
"taze": "^0.16.9",
"typescript": "^5.6.3",
"unocss": "^0.62.4",
"unplugin-auto-import": "^0.18.3",
"unplugin-rpc": "^2.0.22",
"unplugin-vue-components": "^0.27.4",
"unplugin-vue-macros": "^2.13.3",
"unplugin-vue-markdown": "^0.26.2",
"unplugin-vue-router": "^0.10.8",
"vite": "^5.4.10",
"vite-bundle-visualizer": "^1.2.1",
"vite-plugin-inspect": "^0.8.7",
"vite-plugin-pwa": "^0.20.5",
"vite-plugin-vue-devtools": "^7.6.3",
"vite-plugin-vue-layouts": "^0.11.0",
"vite-plugin-webfont-dl": "^3.9.5",
"vite-ssg": "^0.23.8",
"vite-ssg-sitemap": "^0.8.1",
"vitest": "^2.1.4",
"vue-tsc": "^2.1.10"
},
"resolutions": {
"@typescript-eslint/utils": "^8.2.0"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*": "eslint --fix"
}
}