-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.14 KB
/
Copy pathpackage.json
File metadata and controls
41 lines (41 loc) · 1.14 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
{
"name": "voice-agent-deployment-lab",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"eval": "node --import tsx scripts/eval.ts",
"eval:llm": "node --import tsx scripts/eval-llm.ts",
"verify:trace": "node --import tsx scripts/verify-trace.ts",
"verify:db": "node --import tsx scripts/verify-db.ts",
"test": "vitest run",
"db:push": "drizzle-kit push",
"db:seed": "node --import tsx lib/db/seed.ts"
},
"dependencies": {
"@esbuild/darwin-arm64": "0.27.7",
"drizzle-orm": "^0.43.1",
"lightningcss-darwin-arm64": "^1.32.0",
"next": "^15.3.2",
"pg": "^8.16.0",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"zod": "^3.24.4"
},
"devDependencies": {
"@tailwindcss/postcss": "^4.1.7",
"@types/node": "^22.15.30",
"@types/pg": "^8.15.1",
"@types/react": "^19.1.5",
"@types/react-dom": "^19.1.5",
"drizzle-kit": "^0.31.1",
"tailwindcss": "^4.1.7",
"tsx": "^4.19.4",
"typescript": "^5.8.3",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^3.2.4"
}
}