-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 2.04 KB
/
Copy pathpackage.json
File metadata and controls
58 lines (58 loc) · 2.04 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
{
"name": "pip",
"version": "0.1.0",
"private": false,
"engines": {
"node": "24.x"
},
"scripts": {
"dev": "next dev --webpack",
"build": "NEXT_PRIVATE_BUILD_WORKER=0 next build --webpack",
"start": "next start",
"test": "vitest run",
"test:e2e": "playwright test",
"test:watch": "vitest",
"check:db-schema-names": "node scripts/check-db-schema-names.mjs",
"eval:agent": "node scripts/eval-agent.mjs",
"eval:agent:major": "node scripts/eval-agent.mjs --suite major-capabilities",
"eval:agent:routing": "node scripts/eval-agent.mjs --routing-only",
"eval:agent:cc": "node scripts/champion-challenger-agent.mjs",
"eval:agent:cc:holdout": "node scripts/champion-challenger-agent.mjs --holdout",
"eval:agent:cc:analyze": "node scripts/analyze-champion-challenger-report.mjs",
"eval:agent:improve": "node scripts/run-agent-improvement-loop.mjs",
"test:pip-money-companion-gate": "node scripts/pip-money-companion-gate.mjs",
"dogfood:router": "vitest run src/lib/agent/intent-router-dogfood.test.ts",
"dogfood:router:api": "vite-node scripts/dogfood-agent-router.mjs",
"intent:embeddings:generate": "node scripts/generate-intent-embeddings.mjs",
"intent:embeddings:check": "node scripts/check-intent-embeddings.mjs",
"analyze:agent-conversations": "node scripts/analyze-agent-conversations.mjs"
},
"dependencies": {
"@openai/agents": "^0.11.6",
"@supabase/ssr": "^0.10.3",
"@supabase/supabase-js": "^2.107.0",
"lucide-react": "^0.468.0",
"next": "16.2.7",
"openai": "^6.42.0",
"plaid": "^42.2.0",
"react": "19.2.7",
"react-dom": "19.2.7",
"stripe": "^22.3.0",
"zod": "^4.4.3"
},
"overrides": {
"postcss": "^8.5.10"
},
"devDependencies": {
"@playwright/test": "^1.60.0",
"@types/node": "^22.10.2",
"@types/react": "^18.3.18",
"@types/react-dom": "^18.3.5",
"autoprefixer": "^10.4.20",
"postcss": "^8.5.10",
"sharp": "^0.34.5",
"tailwindcss": "^3.4.17",
"typescript": "^5.7.2",
"vitest": "^4.1.9"
}
}