-
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) · 981 Bytes
/
Copy pathpackage.json
File metadata and controls
28 lines (28 loc) · 981 Bytes
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": "perfomance-agent",
"private": true,
"version": "0.0.0",
"type": "module",
"workspaces": [
"apps/*",
"packages/*",
"scripts"
],
"scripts": {
"dev:api": "bun --watch apps/api/src/index.ts",
"dev:mcp": "bun --watch apps/mcp/src/index.ts",
"dev:ingester": "bun --watch apps/ingester/src/index.ts",
"dev:web": "bun --cwd apps/web run dev",
"dev": "bun run dev:api & bun run dev:mcp & bun run dev:ingester & bun run dev:web",
"build:web": "bun --cwd apps/web run build",
"db:generate": "cd packages/db && bunx drizzle-kit generate --config drizzle.coach.config.ts && bunx drizzle-kit generate --config drizzle.evidence.config.ts",
"db:migrate": "bun packages/db/src/migrate.ts",
"seed:library": "bun scripts/seed-library.ts",
"strava:auth": "bun scripts/strava-auth.ts",
"typecheck": "bun --filter '*' run typecheck"
},
"devDependencies": {
"typescript": "^5.7.2",
"@types/bun": "latest"
}
}