-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 1.04 KB
/
package.json
File metadata and controls
28 lines (28 loc) · 1.04 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
{
"name": "vero-monorepo",
"private": true,
"scripts": {
"dev": "concurrently -n \"web,gate,work\" -c \"cyan,magenta,yellow\" \"bun dev:web\" \"bun dev:realtime\" \"bun dev:edge\"",
"dev:web": "bun run --cwd apps/web dev",
"dev:realtime": "bun run --cwd apps/realtime-gateway start:dev",
"dev:edge": "bun run --cwd apps/edge-gateway wrangler dev",
"build": "bun run build:db && bun run build:web && bun run build:gateway",
"build:web": "bun run --cwd apps/web build",
"build:db": "bun run --cwd packages/db build",
"build:gateway": "bun run --cwd apps/realtime-gateway build",
"test": "bun run --cwd apps/web test",
"format": "prettier --write .",
"db:generate": "bun run --cwd packages/db db:generate",
"db:migrate": "bun run --cwd packages/db db:migrate",
"db:push": "bun run --cwd packages/db db:push",
"db:studio": "bun run --cwd packages/db db:studio"
},
"workspaces": [
"apps/*",
"packages/*"
],
"devDependencies": {
"concurrently": "^9.2.1",
"prettier": "^3.7.4"
}
}