-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 1.02 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
{
"name": "sample-grpc-ssl",
"version": "1.0.0",
"description": "Small example for using gRPC with SSL in Node.js",
"main": "src/index.ts",
"scripts": {
"init": "npm run proto:types",
"start": "ts-node src/index.ts",
"debug:index": "node -r ts-node/register --inspect src/index.ts",
"proto:types": "grpc_tools_node_protoc --plugin=protoc-gen-ts=$PWD/node_modules/.bin/protoc-gen-ts.cmd --ts_out=./src/proto -I ./src/proto ./src/proto/*.proto"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ragauskl/sample-grpc-ssl.git"
},
"license": "ISC",
"bugs": {
"url": "https://github.com/ragauskl/sample-grpc-ssl/issues"
},
"homepage": "https://github.com/ragauskl/sample-grpc-ssl#readme",
"dependencies": {
"@grpc/grpc-js": "1.5.5",
"@grpc/proto-loader": "0.6.9",
"grpc-tools": "1.11.2",
"selfsigned": "2.0.0"
},
"devDependencies": {
"@types/node": "16.11.25",
"grpc_tools_node_protoc_ts": "5.3.2",
"ts-node": "10.5.0",
"typescript": "4.5.5"
}
}