forked from twilio-labs/call-gpt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 939 Bytes
/
package.json
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
{
"name": "genai-phone",
"version": "1.1.0",
"description": "",
"main": "index.js",
"scripts": {
"inbound": "node ./scripts/inbound-call.js",
"outbound": "node ./scripts/outbound-call.js",
"test": "jest",
"dev": "nodemon app.js",
"start": "node app.js"
},
"keywords": [],
"author": "Charlie Weems",
"license": "MIT",
"dependencies": {
"@deepgram/sdk": "^3.3.4",
"colors": "^1.4.0",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"express-ws": "^5.0.2",
"fly": "^4.6.7",
"groq": "^3.57.3",
"groq-sdk": "^0.7.0",
"moment": "^2.30.1",
"moment-timezone": "^0.5.45",
"ngrok": "^5.0.0-beta.2",
"node-fetch": "^2.7.0",
"openai": "^4.20.1",
"twilio": "^4.23.0",
"uuid": "^9.0.1",
"wavefile": "^11.0.0"
},
"devDependencies": {
"@flydotio/dockerfile": "^0.4.11",
"eslint": "^8.57.0",
"jest": "^29.7.0",
"nodemon": "^3.0.2"
}
}