-
Notifications
You must be signed in to change notification settings - Fork 32
/
package.json
50 lines (50 loc) · 1.39 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
{
"name": "node-grpc-typescript",
"version": "0.1.0",
"description": "Node.js gRPC Structure for TypeScript Example",
"main": "dist/server.js",
"engines": {
"node": ">=20"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint --ext .ts .",
"build": "node bin/proto && rimraf dist && tsc -b",
"start": "node dist/server",
"client": "node dist/client",
"health": "node dist/health"
},
"dependencies": {
"@grpc/grpc-js": "^1.12.2",
"grpc-health-check": "^2.0.2",
"source-map-support": "^0.5.21"
},
"devDependencies": {
"@types/node": "^20.17.6",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"eslint": "^8.57.1",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^18.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-sonarjs": "^0.25.1",
"grpc-tools": "^1.12.4",
"rimraf": "^6.0.1",
"ts-proto": "^2.3.0",
"typescript": "~5.5.4"
},
"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"
}