-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.76 KB
/
Copy pathpackage.json
File metadata and controls
37 lines (37 loc) · 1.76 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
29
30
31
32
33
34
35
36
37
{
"name": "voiceforge",
"version": "1.0.0",
"private": true,
"packageManager": "bun@1.3.14",
"workspaces": ["apps/*", "packages/*"],
"overrides": {
"tar": "^7.5.7",
"@xmldom/xmldom": "^0.8.12",
"undici": "^6.24.0",
"minimatch": "^10.2.4",
"shell-quote": "^1.8.4",
"ws": "^8.21.0",
"flatted": "^3.4.0",
"@isaacs/brace-expansion": "^5.0.1",
"image-size": "^1.2.1",
"picomatch": "^4.0.3"
},
"scripts": {
"start": "bun run --cwd apps/mobile start",
"start-web": "bun run --cwd apps/mobile start-web",
"start-web-dev": "bun run --cwd apps/mobile start-web-dev",
"lint": "bun run --cwd apps/mobile lint",
"typecheck": "bun run --cwd apps/mobile typecheck",
"test": "bun run --cwd apps/mobile test",
"test:watch": "bun run --cwd apps/mobile test:watch",
"export:web": "bun run --cwd apps/mobile export:web",
"verify": "bun run verify:backend && bun run verify:mobile",
"verify:backend": "bun run --cwd packages/contracts verify && bun run --cwd packages/auth verify && bun run --cwd packages/sync verify && bun run --cwd packages/transcription verify && bun run --cwd packages/notifications verify && bun run --cwd packages/workflows verify && bun run --cwd packages/observability verify && bun run --cwd packages/database verify && bun run --cwd apps/api verify && bun run --cwd apps/worker verify && bun run --cwd apps/admin verify",
"verify:mobile": "bun run --cwd apps/mobile verify",
"doctor": "bun run --cwd apps/mobile doctor",
"dev:dependencies": "docker compose -f infra/compose.yaml up -d",
"dev:dependencies:down": "docker compose -f infra/compose.yaml down",
"db:generate": "bun run --cwd packages/database generate",
"db:migrate": "bun run --cwd packages/database migrate"
}
}