-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.41 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
{
"name": "lemmy-federate",
"private": true,
"type": "module",
"scripts": {
"package": "bun fe:build && bun db:generate && bun run build",
"start": "bun run ./dist/index.js",
"dev": "bun run --watch --inspect=localhost:6499/ src/index.ts",
"build": "bun run ./build.ts",
"fe:dev": "vite frontend",
"fe:build": "vite build frontend --emptyOutDir --outDir ../dist/frontend",
"db:generate": "prisma generate",
"db:migrate": "prisma migrate dev",
"check": "vue-tsc --noEmit && biome check --write ."
},
"dependencies": {
"@hono/trpc-server": "^0.3.2",
"@mdi/font": "^7.4.47",
"@prisma/client": "5.21.1",
"@ryoppippi/unplugin-typia": "^1.0.6",
"@trpc/client": "^11.0.0-rc.587",
"@trpc/server": "^11.0.0-rc.587",
"cookie": "^1.0.1",
"jsonwebtoken": "^9.0.2",
"ky": "^1.7.2",
"lemmy-js-client": "0.19.6-beta.1",
"ms": "^2.1.3",
"pinia": "^2.2.4",
"redis": "^4.7.0",
"typia": "^6.11.2",
"vue": "^3.5.10",
"vue-router": "4"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@tanstack/vue-query": "^5.59.13",
"@types/bun": "latest",
"@types/jsonwebtoken": "^9.0.7",
"@types/ms": "^0.7.34",
"@vitejs/plugin-vue": "^5.1.4",
"prisma": "5.21.1",
"typescript": "^5.5.3",
"vite": "^5.4.8",
"vite-plugin-vuetify": "^2.0.4",
"vue-tsc": "^2.1.6",
"vuetify": "^3.7.1"
},
"trustedDependencies": [
"@biomejs/biome",
"@prisma/client",
"@prisma/engines",
"prisma"
]
}