28 lines
1.0 KiB
JSON
28 lines
1.0 KiB
JSON
{
|
|
"name": "omnivoice-studio-monorepo",
|
|
"version": "1.0.0",
|
|
"private": true,
|
|
"packageManager": "bun@1.3.11",
|
|
"scripts": {
|
|
"dev:api": "uv run uvicorn main:app --app-dir backend --host 0.0.0.0 --port 8000 --reload",
|
|
"dev:frontend": "bun run --cwd frontend dev",
|
|
"dev:desktop": "bun run --cwd frontend desktop",
|
|
"wait:api": "wait-on -t 120000 http-get://localhost:8000/model/status",
|
|
"wait:frontend": "wait-on -t 120000 http://localhost:5173",
|
|
"dev": "concurrently -n api,fe -c green,cyan --kill-others-on-fail \"bun run dev:api\" \"bun run wait:api && bun run dev:frontend\"",
|
|
"desktop": "concurrently -n api,app -c green,magenta --kill-others-on-fail \"bun run dev:api\" \"bun run wait:api && bun run dev:desktop\"",
|
|
"build": "turbo run build",
|
|
"start": "turbo run start",
|
|
"test:frontend": "node --test tests/frontend/*.test.mjs"
|
|
},
|
|
"workspaces": [
|
|
"frontend"
|
|
],
|
|
"devDependencies": {
|
|
"concurrently": "^9.2.1",
|
|
"turbo": "^2.9.6",
|
|
"typescript": "^6.0.3",
|
|
"wait-on": "^9.0.5"
|
|
}
|
|
}
|