-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.51 KB
/
Copy pathpackage.json
File metadata and controls
76 lines (76 loc) · 2.51 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
{
"name": "voxy",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "next dev",
"generate": "prisma generate",
"build": "next build",
"start": "next start",
"lint": "eslint",
"test": "node tests/agent/llm-client.test.js && node tests/agent/groundingService.test.js && node tests/agent/conversationEngine.test.js && node tests/agent/salesBehavior.test.js && node tests/agent/productTools.test.js && node tests/agent/orderBuilder.test.js && node tests/agent/multilingual.test.js",
"test:s1": "node tests/agent/llm-client.test.js",
"test:s2": "node tests/agent/llm-client.test.js",
"test:s3": "node tests/agent/groundingService.test.js",
"test:s4": "node tests/agent/conversationEngine.test.js",
"test:s5": "node tests/agent/salesBehavior.test.js",
"test:s6": "node tests/agent/productTools.test.js",
"test:s7": "node tests/agent/orderBuilder.test.js",
"test:s11": "node tests/agent/multilingual.test.js"
},
"dependencies": {
"@base-ui/react": "^1.3.0",
"@google-cloud/text-to-speech": "^6.4.0",
"@google/generative-ai": "^0.24.1",
"@neondatabase/serverless": "^1.0.2",
"@prisma/adapter-pg": "^6.19.3",
"@prisma/client": "^6.19.3",
"@supabase/ssr": "^0.9.0",
"@supabase/supabase-js": "^2.99.1",
"@tanstack/react-query": "^5.91.3",
"@vercel/analytics": "^2.0.1",
"@vercel/speed-insights": "^2.0.0",
"axios": "^1.13.6",
"bcryptjs": "^3.0.3",
"class-variance-authority": "^0.7.1",
"cloudinary": "^2.11.0",
"clsx": "^2.1.1",
"dotenv": "^17.3.1",
"enhanced-resolve": "^5.24.5",
"framer-motion": "^12.38.0",
"franc": "^6.2.0",
"google-tts-api": "^2.0.2",
"groq-sdk": "^1.1.1",
"jose": "^6.2.1",
"jsonwebtoken": "^9.0.3",
"lucide-react": "^0.577.0",
"msedge-tts": "^2.0.4",
"next": "^16.3.4",
"next-themes": "^0.4.6",
"nodemailer": "^8.0.3",
"openai": "^6.32.0",
"pg": "^8.20.0",
"prisma": "^6.19.3",
"react": "19.2.3",
"react-dom": "19.2.3",
"react-hot-toast": "^2.6.0",
"react-is": "^19.2.4",
"react-markdown": "^10.1.0",
"recharts": "^3.8.0",
"remark-gfm": "^4.0.1",
"shadcn": "^4.0.8",
"tailwind-merge": "^3.5.0",
"tw-animate-css": "^1.4.0",
"zod": "^4.5.4",
"zustand": "^5.0.12"
},
"devDependencies": {
"@tailwindcss/postcss": "^4",
"@types/react": "19.2.14",
"babel-plugin-react-compiler": "1.0.0",
"eslint": "^9",
"eslint-config-next": "^16.3.4",
"tailwindcss": "^4"
}
}