-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 3.83 KB
/
Copy pathpackage.json
File metadata and controls
91 lines (91 loc) · 3.83 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "@buildlabs/build-agent-backend",
"version": "0.1.0",
"private": true,
"type": "module",
"packageManager": "npm@11.17.0",
"workspaces": [
"apps/dashboard",
"apps/voice-intake"
],
"description": "Backend build-agent runtime for acceptance-driven software generation.",
"engines": {
"node": ">=24"
},
"scripts": {
"build": "npm run build:server && npm run build:studio && npm run build:dashboard",
"build:dashboard": "npm run build --workspace @buildlabs/dashboard",
"build:server": "tsc -p tsconfig.build.json",
"build:studio": "vite build --config studio/vite.config.ts",
"check:config": "tsx scripts/check-config.ts",
"check": "npm run format:check && npm run lint && npm run lint:dashboard && npm run typecheck && npm run build && npm run test:coverage && npm run test:dashboard && npm run lint --workspace @buildlabs/voice-intake && npm run test --workspace @buildlabs/voice-intake",
"dev": "tsx watch src/index.ts",
"dev:orchestration": "tsx watch src/orchestration-index.ts",
"dev:dashboard": "npm run dev --workspace @buildlabs/dashboard",
"dev:studio": "vite --config studio/vite.config.ts",
"dev:voice": "npm run dev --workspace @buildlabs/voice-intake",
"elevenlabs:reconcile": "tsx scripts/reconcile-elevenlabs-agent.ts",
"elevenlabs:simulate": "tsx scripts/run-elevenlabs-agent-tests.ts",
"format": "prettier --write .",
"format:check": "prettier --check .",
"lint": "eslint . --max-warnings=0",
"lint:dashboard": "npm run lint --workspace @buildlabs/dashboard",
"plivo:probe": "tsx scripts/probe-plivo-pstn.ts",
"plivo:reconcile": "tsx scripts/reconcile-plivo-pstn.ts",
"provision:daytona": "tsx scripts/provision-daytona-snapshot.ts",
"smoke:providers": "tsx scripts/provider-smoke.ts",
"start": "node dist/production-index.js",
"start:build-backend": "node dist/index.js",
"start:orchestration": "node dist/orchestration-index.js",
"test": "vitest run --dir tests",
"test:dashboard": "npm run test --workspace @buildlabs/dashboard",
"test:e2e:dashboard": "npm run test:e2e --workspace @buildlabs/dashboard",
"test:e2e:journey": "E2E_STUB=1 playwright test --config e2e/playwright.config.ts",
"test:e2e:journey:live": "E2E_LIVE=1 playwright test --config e2e/playwright.config.ts",
"test:coverage": "vitest run --dir tests --coverage --coverage.include=\"src/**/*.ts\" --coverage.thresholds.statements=75 --coverage.thresholds.branches=65 --coverage.thresholds.functions=80 --coverage.thresholds.lines=75",
"typecheck": "npm run typecheck:server && npm run typecheck:studio && npm run typecheck:dashboard",
"typecheck:dashboard": "npm run typecheck --workspace @buildlabs/dashboard",
"typecheck:server": "tsc -p tsconfig.json --noEmit",
"typecheck:studio": "tsc -p studio/tsconfig.json --noEmit"
},
"dependencies": {
"@ag-ui/core": "0.0.57",
"@ag-ui/encoder": "0.0.57",
"@daytona/sdk": "^0.200.1",
"@elevenlabs/elevenlabs-js": "2.59.0",
"@fastify/static": "8.3.0",
"braintrust": "^3.24.0",
"fastify": "^5.10.0",
"lucide-react": "0.468.0",
"mailauth": "^4.13.3",
"openai": "^6.49.0",
"react": "19.2.6",
"react-dom": "19.2.6",
"resend": "^6.18.0",
"stripe": "^22.3.2",
"tar": "^7.5.21",
"zod": "^4.4.3"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/node": "^26.1.1",
"@types/react": "19.2.14",
"@types/react-dom": "19.2.3",
"@vitejs/plugin-react": "6.0.2",
"@vitest/coverage-v8": "^4.1.10",
"eslint": "^10.7.0",
"prettier": "^3.9.6",
"tsx": "^4.23.1",
"typescript": "^6.0.3",
"typescript-eslint": "^8.65.0",
"vite": "8.1.5",
"vitest": "^4.1.10"
},
"overrides": {
"@opentelemetry/propagator-jaeger": "2.10.0",
"mailauth": {
"nodemailer": "9.0.3",
"undici": "7.28.0"
}
}
}