-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
51 lines (51 loc) · 1.41 KB
/
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
41
42
43
44
45
46
47
48
49
50
51
{
"name": "restack-voice",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start-server": "ts-node src/server.ts",
"start-services": "ts-node src/services.ts",
"dev-server": "ts-node-dev --respawn --transpile-only src/server.ts",
"dev-services": "ts-node-dev --respawn --transpile-only src/services.ts",
"build": "tsc --build",
"clean": "rm -rf node_modules",
"call": "ts-node ./callWorkflow.ts",
"ngrok": "ngrok http 4000"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@deepgram/sdk": "^3.6.0",
"@restackio/ai": "^0.0.85",
"@restackio/integrations-deepgram": "^0.0.13",
"@restackio/integrations-openai": "^0.0.34",
"@restackio/integrations-twilio": "^0.0.10",
"@restackio/integrations-websocket": "^0.0.17",
"@temporalio/workflow": "1.11.1",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.21.0",
"openai": "^4.59.0",
"ts-node": "^10.9.2",
"twilio": "^5.3.0",
"typescript": "^5.6.2",
"uuid": "^10.0.0",
"ws": "^8.18.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@restackio/cloud": "^1.0.19",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/node": "^22.5.4",
"@types/uuid": "^10.0.0",
"@types/ws": "^8.5.12",
"nodemon": "^3.1.4",
"ts-node-dev": "^2.0.0"
},
"optionalDependencies": {
"bufferutil": "^4.0.8"
}
}