-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 988 Bytes
/
Copy pathpackage.json
File metadata and controls
30 lines (30 loc) · 988 Bytes
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
{
"scripts": {
"dev": "wrangler dev",
"dev:remote": "wrangler dev --remote",
"deploy": "wrangler deploy --minify",
"types": "wrangler types --env-interface CloudflareBindings",
"biome": "npx @biomejs/biome check --write .",
"db:sync": "drizzle-kit push",
"db:pull": "drizzle-kit pull",
"db:migration:new": "wrangler d1 migrations create bfstats-new",
"db:migration:apply": "wrangler d1 migrations apply bfstats-new",
"db:migration:apply:remote": "wrangler d1 migrations apply bfstats-new --remote"
},
"dependencies": {
"@hono/zod-openapi": "^0.16.4",
"@scalar/hono-api-reference": "^0.5.159",
"discord-api-types": "^0.38.18",
"drizzle-orm": "^0.36.1",
"drizzle-zod": "^0.5.1",
"hono": "^4.9.1",
"zod": "^3.23.8"
},
"devDependencies": {
"@biomejs/biome": "1.9.1",
"@cloudflare/workers-types": "^4.20250812.0",
"@types/node": "^22.9.0",
"drizzle-kit": "^0.28.0",
"wrangler": "^4.107.0"
}
}