forked from CatsMiaow/node-grpc-typescript
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.37 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.37 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
{
"name": "node-grpc-typescript",
"version": "0.1.0",
"description": "Node.js gRPC Structure for TypeScript Example",
"main": "dist/server.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint --ext .ts .",
"build": "rimraf dist && tsc",
"build:proto": "node bin/proto",
"prestart": "npm run lint && npm run build",
"start": "node dist/server",
"client": "node dist/client",
"health": "node dist/health"
},
"dependencies": {
"google-protobuf": "^3.12.2",
"grpc": "^1.24.3"
},
"devDependencies": {
"@types/google-protobuf": "^3.7.2",
"@types/node": "^14.0.23",
"@typescript-eslint/eslint-plugin": "^3.6.1",
"@typescript-eslint/parser": "^3.6.1",
"dtslint": "^3.6.12",
"eslint": "^7.4.0",
"eslint-config-airbnb-typescript": "^8.0.2",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-sonarjs": "^0.5.0",
"grpc-tools": "^1.9.0",
"grpc_tools_node_protoc_ts": "^4.1.0",
"protobufjs": "^6.10.1",
"rimraf": "^3.0.2",
"shelljs": "^0.8.4",
"typescript": "^3.9.7"
},
"repository": {
"type": "git",
"url": "https://github.com/CatsMiaow/node-grpc-typescript.git"
},
"keywords": [
"Node.js",
"gRPC",
"TypeScript"
],
"homepage": "https://github.com/CatsMiaow/node-grpc-typescript#readme",
"author": "CatsMiaow",
"license": "MIT"
}