-
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
117 lines (117 loc) · 3.92 KB
/
package.json
File metadata and controls
117 lines (117 loc) · 3.92 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
{
"name": "voice-agent-pupuplatter",
"private": true,
"version": "1.0.85",
"type": "module",
"scripts": {
"predev": "node scripts/ensure-config-stub.mjs",
"dev": "vite",
"dev:all": "concurrently \"npm run dev\" \"npm run server\"",
"dev:start": "bash scripts/dev.sh",
"server": "node server/index.js",
"prebuild": "node scripts/ensure-config-stub.mjs",
"build": "vite build",
"prebuild:dev": "node scripts/ensure-config-stub.mjs",
"build:dev": "vite build --mode development",
"type-check": "tsc --noEmit -p tsconfig.app.json",
"lint": "eslint .",
"format": "prettier --write \"src/**/*.{ts,tsx,css,md}\"",
"format:check": "prettier --check \"src/**/*.{ts,tsx,css,md}\"",
"prepreview": "node scripts/ensure-config-stub.mjs",
"preview": "vite preview",
"test": "vitest",
"test:ui": "vitest --ui",
"test:run": "vitest run",
"test:e2e": "playwright test",
"test:e2e:ci": "playwright test tests/e2e/smoke tests/e2e/providers/elevenlabs.spec.ts tests/e2e/error-handling/elevenlabs-reconnection.spec.ts --project=chromium",
"test:e2e:ui": "playwright test --ui",
"test:e2e:headed": "playwright test --headed",
"prepare": "husky",
"docker:build": "DOCKER_BUILDKIT=1 docker build -t voice-agent:local .",
"docker:up": "docker compose up -d --build",
"docker:down": "docker compose down --remove-orphans",
"docker:logs": "docker compose logs -f voice-agent",
"docker:health": "curl -fsS http://localhost:3001/api/health",
"deploy:verify": "node scripts/deploy/verify-production.mjs",
"docker:prod": "npm run docker:up && npm run docker:health",
"demo": "bash scripts/demo.sh"
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"*.{css,md,json}": [
"prettier --write"
]
},
"dependencies": {
"@elevenlabs/react": "^1.6.0",
"@google/genai": "^2.0.1",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-popover": "^1.1.15",
"@radix-ui/react-scroll-area": "^1.2.10",
"@radix-ui/react-select": "^2.2.6",
"@radix-ui/react-slider": "^1.3.6",
"@radix-ui/react-slot": "^1.2.4",
"@radix-ui/react-tabs": "^1.1.13",
"@radix-ui/react-toast": "^1.2.15",
"@radix-ui/react-tooltip": "^1.2.8",
"@tailwindcss/postcss": "^4.3.0",
"@tanstack/react-query": "^5.100.9",
"@vapi-ai/web": "^2.5.2",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"compression": "^1.8.1",
"eventemitter3": "^5.0.4",
"framer-motion": "^12.38.0",
"lucide-react": "^1.16.0",
"next-themes": "^0.4.6",
"pino": "^10.3.1",
"pino-pretty": "^13.1.3",
"react": "^19.2.6",
"react-dom": "^19.2.6",
"react-router-dom": "^7.15.0",
"retell-client-js-sdk": "^2.0.7",
"sonner": "^2.0.7",
"tailwind-merge": "^3.6.0",
"ultravox-client": "^0.5.0"
},
"optionalDependencies": {
"concurrently": "^9.2.1",
"cors": "^2.8.6",
"dotenv": "^17.4.2",
"express": "^5.2.1",
"express-rate-limit": "^8.5.1"
},
"overrides": {
"node-domexception": "npm:@profoundlogic/node-domexception@1.0.2"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@playwright/test": "^1.59.1",
"@tailwindcss/typography": "^0.5.19",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/node": "^25.6.2",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.1",
"autoprefixer": "^10.5.0",
"eslint": "^10.3.0",
"eslint-plugin-react-hooks": "^7.1.1",
"eslint-plugin-react-refresh": "^0.5.2",
"globals": "^17.6.0",
"husky": "^9.1.7",
"jsdom": "^29.1.1",
"lint-staged": "^17.0.4",
"postcss": "^8.5.14",
"prettier": "^3.8.3",
"tailwindcss": "^4.3.0",
"typescript": "^6.0.3",
"typescript-eslint": "^8.59.2",
"vite": "^8.0.12",
"vitest": "^4.1.5"
}
}