-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
48 lines (48 loc) · 1.24 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
{
"name": "assist-go-server",
"version": "1.0.0",
"description": "The backend server for the AssistGo App",
"main": "server.js",
"scripts": {
"start": "node ./build/server.js",
"build": "tsc -p .",
"dev": "nodemon ./src/server.ts"
},
"author": "AssistGo Team",
"license": "ISC",
"dependencies": {
"@google-cloud/speech": "^4.10.2",
"@google-cloud/storage": "^5.19.3",
"@types/axios": "^0.14.0",
"@types/express-ws": "^3.0.1",
"@types/multer": "^1.4.7",
"@types/socket.io": "^3.0.2",
"@types/twilio": "^3.19.3",
"@types/uuid": "^8.3.4",
"@types/websocket": "^1.0.5",
"axios": "^0.26.1",
"cors": "^2.8.5",
"dotenv": "^16.0.0",
"express": "^4.17.2",
"express-ws": "^5.0.2",
"iso-language-codes": "^1.1.0",
"mongoose": "^6.2.3",
"multer": "^1.4.4",
"path": "^0.12.7",
"socket.io": "^4.4.1",
"translate": "^1.4.1",
"twilio": "^3.76.1",
"uuid": "^8.3.2",
"uuidv4": "^6.2.12",
"websocket": "^1.0.34"
},
"devDependencies": {
"@types/cors": "^2.8.12",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.13",
"@types/mongoose": "^5.11.97",
"@types/node": "^17.0.21",
"ts-node-dev": "^1.1.8",
"typescript": "^4.5.5"
}
}