-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.5 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.5 KB
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
52
53
{
"name": "node-grpc-cnode",
"version": "1.0.0",
"description": "A Node gRPC server for CNode community built on the top of RESTful API.",
"main": "./dist/server.js",
"scripts": {
"test:unit": "jest -c jest.config.js",
"test:int": "jest -c jest.config.integration.js",
"protoc": "./scripts/protoc.sh",
"clean": "rimraf -rf ./dist",
"prebuild": "npm run clean",
"build": "tsc",
"start": "node ./dist/server.js",
"dev": "npx ts-node ./src/server.ts",
"tslint-check": "tslint-config-prettier-check ./tslint.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mrdulin/node-grpc-cnode.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/mrdulin/node-grpc-cnode/issues"
},
"homepage": "https://github.com/mrdulin/node-grpc-cnode#readme",
"dependencies": {
"@grpc/proto-loader": "^0.5.5",
"axios": "^0.21.2",
"express": "^4.17.3",
"grpc": "^1.24.9",
"grpc-health-check": "^1.8.0"
},
"devDependencies": {
"@types/express": "^4.17.7",
"@types/faker": "^4.1.12",
"@types/google-protobuf": "^3.7.3",
"@types/jest": "^26.0.10",
"faker": "^4.1.0",
"grpc-tools": "^1.12.3",
"grpc_tools_node_protoc_ts": "^4.1.3",
"jest": "^26.4.2",
"loadtest": "^5.0.4",
"prettier": "^2.0.5",
"rimraf": "^3.0.2",
"ts-jest": "^26.2.0",
"ts-node": "^9.0.0",
"tslint": "^5.14.0",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.9.7"
}
}