-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1.22 KB
/
Copy pathpackage.json
File metadata and controls
35 lines (35 loc) · 1.22 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
{
"name": "goalkeeper",
"version": "0.5.0",
"private": true,
"type": "module",
"packageManager": "bun@1.3.9",
"workspaces": [
"apps/*",
"services/*"
],
"scripts": {
"help": "bun run scripts/list-targets.ts",
"dev": "bun run db:up && bun run --filter '*' dev",
"web:dev": "bun run --cwd apps/web dev",
"api:dev": "bun run --cwd services/api dev",
"mcp:dev": "bun run --cwd services/mcp dev",
"docs:dev": "bun run --cwd services/docs dev",
"api:specs": "bun run scripts/generate-openapi.ts",
"docs:generate": "bun run --cwd services/docs content:generate && bun run --cwd services/docs source:generate",
"open:web": "open http://localhost:3000",
"db:up": "docker compose up -d --wait postgres",
"db:down": "docker compose down",
"db:logs": "docker compose logs -f postgres",
"db:migrate": "bun run --cwd services/api db:migrate",
"auth:verify-email": "bun run --cwd services/api auth:verify-email",
"typecheck": "bun run --filter '*' typecheck",
"test": "bun test",
"build": "bun run --filter '*' build",
"check": "bun run typecheck && bun run test && bun run build"
},
"devDependencies": {
"@types/bun": "^1.3.9",
"typescript": "^6.0.2"
}
}