-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.83 KB
/
Copy pathpackage.json
File metadata and controls
45 lines (45 loc) · 1.83 KB
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
{
"name": "leicraftmc-status-page",
"type": "module",
"private": true,
"scripts": {
"db:generate": "bun scripts/db-utils && bunx --bun drizzle-kit generate --config=drizzle/configs/drizzle.base.config.ts",
"db:bun:migrate": "bun scripts/db-utils && bunx --bun drizzle-kit migrate --config=drizzle/configs/drizzle.bun-sqlite.config.ts",
"db:d1:migrate": "bunx --bun drizzle-kit migrate --config=drizzle/configs/drizzle.d1.config.ts",
"build:bun": "nuxt build --preset bun",
"build:cf": "nuxt build --preset cloudflare_pages",
"start": "PORT=12336 bun run .output/server/index.mjs",
"dev": "bunx --bun nuxt dev --port=12336",
"generate": "bunx --bun nuxt generate",
"preview": "bunx --bun nuxt preview",
"postinstall": "bunx --bun nuxt prepare",
"api-client:generate": "bun run scripts/api-client-generate.ts",
"typecheck": "bunx --bun nuxt typecheck && bunx --bun tsc -p ./tsconfig/tsconfig.typecheck.json && echo 'Typecheck passed!'",
"test": "bun test"
},
"dependencies": {
"@hey-api/nuxt": "^0.2.1",
"@hey-api/openapi-ts": "^0.99.0",
"@hono/standard-validator": "^0.3.0",
"@nuxt/ui": "^4.9.0",
"@scalar/hono-api-reference": "^0.11.9",
"bun-types": "^1.3.14",
"drizzle-kit": "^0.31.10",
"drizzle-orm": "^0.45.2",
"drizzle-zod": "^0.8.3",
"hono": "^4.12.30",
"hono-openapi": "^1.3.1",
"nuxt": "^4.4.8",
"typescript": "5.5.4",
"vue": "^3.5.39",
"vue-router": "^5.2.0",
"zod": "^4.4.3"
},
"devDependencies": {
"@cloudflare/workers-types": "^5.20260715.1",
"@iconify-json/lucide": "^1.2.117",
"@libsql/client": "^0.17.4",
"@types/bun": "^1.3.14",
"vue-tsc": "2.0.29"
}
}