-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
22 lines (22 loc) · 784 Bytes
/
package.json
File metadata and controls
22 lines (22 loc) · 784 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
"name": "cloudflare-app",
"private": true,
"workspaces": ["frontend", "backend"],
"scripts": {
"dev": "concurrently \"bun run dev:backend\" \"bun run dev:frontend\"",
"dev:backend": "cd backend && wrangler dev",
"dev:frontend": "cd frontend && bun run dev",
"build": "bun run build:frontend && bun run build:backend",
"build:frontend": "cd frontend && bun run build",
"build:backend": "cd backend && bun run build",
"typecheck": "tsc -b",
"setup": "bun run scripts/setup.ts",
"db:generate": "cd backend && bunx drizzle-kit generate",
"db:push": "cd backend && bunx drizzle-kit push",
"db:migrate": "cd backend && bunx drizzle-kit migrate"
},
"devDependencies": {
"concurrently": "^8.0.0",
"typescript": "^5.6.0"
}
}