-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
28 lines (28 loc) · 830 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
{
"name": "bidirectional_grpc_sample_node",
"version": "1.0.0",
"description": "Sample codebase to demonstrate gRPC bi-directional streaming using NodeJS",
"main": "server.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/techunits/bidirectional_grpc_sample_node.git"
},
"author": "techunits",
"license": "MIT",
"bugs": {
"url": "https://github.com/techunits/bidirectional_grpc_sample_node/issues"
},
"homepage": "https://github.com/techunits/bidirectional_grpc_sample_node#readme",
"dependencies": {
"@grpc/grpc-js": "^1.3.4",
"@grpc/proto-loader": "^0.6.4",
"elogger": "^1.0.9",
"faker": "^5.5.3",
"slugify": "^1.5.3",
"uuid": "^8.3.2"
}
}