-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
37 lines (37 loc) · 978 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
{
"name": "riva-websocket-bridge",
"version": "1.0.0",
"description": "Bridge service for mapping from Websockets ASR requests to Riva gRPC",
"main": "server.js",
"scripts": {
"test": "jest --config ./jest.config.ts",
"test:watch": "npm run test -- --watch",
"start": "node server.js"
},
"repository": {
"type": "git",
"url": "https://github.com/nvidia-riva/websockets-bridge"
},
"author": "NVIDIA",
"license": "Apache-2.0",
"dependencies": {
"@grpc/grpc-js": "^1.7.1",
"@grpc/proto-loader": "^0.7.3",
"bluebird": "^3.7.2",
"dotenv": "^16.0.3",
"express": "^4.18.1",
"google-protobuf": "^3.21.1",
"grpc": "^1.24.11",
"regenerator-runtime": "^0.13.9",
"wavefile": "^11.0.0",
"ws": "^8.9.0",
"wscat": "^5.2.0"
},
"devDependencies": {
"@babel/preset-env": "^7.19.3",
"babel-jest": "^29.1.2",
"jest": "^28.1.3",
"jest-websocket-mock": "^2.4.0",
"ts-node": "^10.9.1"
}
}