-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.79 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.79 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
{
"name": "decipher",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build --webpack",
"start": "next start",
"patch:livekit-agents": "node scripts/patch-livekit-agents.mjs",
"postinstall": "prisma generate",
"lint": "eslint",
"agent:dev": "tsx src/agent/index.ts dev",
"agent:start": "tsx src/agent/index.ts start",
"db:migrate": "prisma migrate dev",
"db:seed": "tsx prisma/seed.ts",
"db:studio": "prisma studio",
"db:up": "docker compose -f docker-compose.dev.yml up -d",
"db:down": "docker compose -f docker-compose.dev.yml down",
"test": "vitest run",
"test:watch": "vitest"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.82.0",
"@clerk/nextjs": "^7.0.11",
"@livekit/agents": "^1.2.4",
"@livekit/agents-plugin-deepgram": "^1.2.4",
"@livekit/agents-plugin-elevenlabs": "^1.2.4",
"@livekit/agents-plugin-openai": "^1.2.4",
"@livekit/agents-plugin-silero": "^1.2.4",
"@prisma/adapter-pg": "^7.7.0",
"@prisma/client": "^7.6.0",
"@privy-io/node": "^0.14.0",
"@privy-io/react-auth": "^3.21.2",
"@types/pg": "^8.20.0",
"clsx": "^2.1.1",
"framer-motion": "^12.38.0",
"livekit-client": "^2.18.1",
"lucide-react": "^1.7.0",
"next": "16.2.2",
"pg": "^8.20.0",
"prisma": "^7.6.0",
"react": "19.2.4",
"react-dom": "19.2.4",
"tailwind-merge": "^3.5.0",
"ts-fsrs": "^5.3.2"
},
"devDependencies": {
"@tailwindcss/postcss": "^4",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"@vitest/coverage-v8": "^4.1.3",
"eslint": "^9",
"eslint-config-next": "16.2.2",
"tailwindcss": "^4",
"ts-node": "^10.9.2",
"tsx": "^4.21.0",
"typescript": "^5",
"vitest": "^4.1.3"
}
}