-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 808 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 808 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
{
"name": "team-clawctor",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"dev": "bun run dev:api & bun run dev:web",
"dev:api": "bun run --cwd packages/api dev",
"dev:web": "bun run --cwd packages/web dev",
"build:web": "bun run --cwd packages/web build",
"db:generate": "bun run --cwd packages/db prisma:generate",
"db:migrate": "bun run --cwd packages/db prisma:migrate",
"db:push": "bun run --cwd packages/db prisma:push",
"db:studio": "bun run --cwd packages/db prisma:studio",
"format": "bun prettier -w ."
},
"overrides": {
"react": "^19.2.0",
"react-dom": "^19.2.0"
},
"module": "index.ts",
"type": "module",
"devDependencies": {
"@types/bun": "latest"
},
"peerDependencies": {
"typescript": "^5"
}
}