islandflow/package.json
dirtydishes 18366192b2 Bind web dev server to port 3000
Simplify the web dev launcher to always use port 3000 and fix the dev:web script cwd invocation.
2025-12-29 18:42:01 -05:00

17 lines
377 B
JSON

{
"name": "islandflow",
"private": true,
"type": "module",
"workspaces": [
"apps/*",
"services/*",
"packages/*"
],
"scripts": {
"dev": "bun run scripts/dev.ts",
"dev:infra": "docker compose up",
"dev:infra:down": "docker compose down",
"dev:web": "bun --cwd=apps/web run dev",
"dev:services": "bun run scripts/dev-services.ts"
}
}