-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
24 lines (24 loc) · 868 Bytes
/
Copy pathpackage.json
File metadata and controls
24 lines (24 loc) · 868 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
{
"name": "web-archive-api",
"scripts": {
"dev": "wrangler dev",
"deploy": "wrangler deploy --minify",
"db:generate": "drizzle-kit generate",
"db:migrate-local": "pnpx wrangler d1 execute web-archive-db --local --file=./src/db/migrations/0000_nifty_norman_osborn.sql",
"db:migrate-remote": "pnpx wrangler d1 execute web-archive-db --remote --file=./src/db/migrations/0000_nifty_norman_osborn.sql",
"studio": "pnpm drizzle-kit studio --port 5000 --verbose",
"lint-fix": "prettier --write .",
"cf-typegen": "wrangler types --env-interface CloudflareBindings"
},
"dependencies": {
"@libsql/client": "^0.15.7",
"drizzle-orm": "^0.44.0",
"hono": "^4.7.10"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20250529.0",
"drizzle-kit": "^0.31.1",
"prettier": "^3.5.3",
"wrangler": "^4.4.0"
}
}