-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 1.16 KB
/
package.json
File metadata and controls
32 lines (32 loc) · 1.16 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
{
"name": "catalyst",
"type": "module",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"build:web": "bun --filter '@catalyst/web' build",
"deploy:worker": "bun --filter '@catalyst/worker' deploy",
"dev": "bun --filter '*' dev",
"dev:worker": "bun --filter '@catalyst/worker' dev",
"dev:web": "bun --filter '@catalyst/web' dev",
"typecheck": "tsc -b",
"check": "biome check --write .",
"format": "biome format --write .",
"lint": "biome lint --write .",
"db:generate": "bun --filter '@catalyst/worker' db:generate",
"db:migrate:local": "bun --filter '@catalyst/worker' db:migrate:local",
"db:migrate:remote": "bun --filter '@catalyst/worker' db:migrate:remote",
"backfill": "bun scripts/backfill.ts",
"backfill:local": "bun scripts/backfill.ts && bunx wrangler d1 execute DB --file=./backfill.sql --local",
"backfill:remote": "bun scripts/backfill.ts && bunx wrangler d1 execute DB --file=./backfill.sql --remote"
},
"devDependencies": {
"@biomejs/biome": "^2.4.15",
"@catalyst/worker": "workspace:*",
"bun-types": "^1.3.13",
"typescript": "^6.0.3",
"wrangler": "^4.90.0"
}
}