-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (32 loc) · 867 Bytes
/
package.json
File metadata and controls
33 lines (32 loc) · 867 Bytes
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
{
"name": "ai-calling-agent",
"version": "1.0.0",
"description": "AI-powered outbound calling agent with voice interaction",
"main": "server/index.js",
"scripts": {
"dev": "concurrently \"npm run server\" \"npm run client\"",
"server": "nodemon server/index.js",
"client": "cd client && npm start",
"install-all": "npm install && cd client && npm install"
},
"keywords": ["ai", "calling", "twilio", "voice", "llm"],
"author": "",
"license": "MIT",
"dependencies": {
"express": "^4.18.2",
"twilio": "^4.19.0",
"openai": "^4.20.1",
"deepgram": "^3.2.7",
"elevenlabs": "^0.8.1",
"sqlite3": "^5.1.6",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"axios": "^1.6.2",
"ws": "^8.14.2",
"ffmpeg-static": "^5.2.0"
},
"devDependencies": {
"nodemon": "^3.0.2",
"concurrently": "^8.2.2"
}
}