-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.07 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.07 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
{
"name": "delegation-service",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "npm run build && node ./dist/index.js",
"build": "tsc",
"serve": "node ./dist/index.js",
"test": "npm run tslint",
"tslint": "tslint -c tslint.json -p tsconfig.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/meateam/delegation.git"
},
"author": "Allkinds",
"license": "ISC",
"bugs": {
"url": "https://github.com/meateam/delegation/issues"
},
"homepage": "https://github.com/meateam/delegation#readme",
"dependencies": {
"axios": "^0.19.0",
"google-protobuf": "^3.11.1",
"grpc": "^1.24.2",
"grpc-tools": "^1.8.0",
"grpc-ts-health-check": "^1.0.14",
"mongoose": "^5.7.14",
"tslint": "^5.20.1",
"typescript": "^3.7.3"
},
"devDependencies": {
"@types/axios": "^0.14.0",
"@types/google-protobuf": "^3.7.2",
"@types/mongoose": "^5.5.34",
"@types/redis": "^2.8.14",
"grpc_tools_node_protoc_ts": "^2.5.8",
"tslint-config-airbnb": "^5.11.2"
}
}