-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1 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
{
"name": "grpc-todo-app",
"version": "1.0.0",
"description": "Simple todo app based on grpc client and server",
"main": "server.js",
"private": "true",
"scripts": {
"start:server": "node src/server.js",
"start:client": "node src/client.js",
"lint": "eslint ./src"
},
"keywords": [
"grpc",
"nodejs",
"protobuf"
],
"author": "lmjsprog <[email protected]>",
"license": "ISC",
"repository": {
"type": "git",
"url": "git+https://github.com/lmjsprog/grpc-client-server-todo-app"
},
"bugs": {
"url": "https://github.com/lmjsprog/grpc-client-server-todo-app/issues"
},
"homepage": "https://github.com/lmjsprog/grpc-client-server-todo-app",
"dependencies": {
"@grpc/grpc-js": "^1.2.8",
"@grpc/proto-loader": "^0.5.6"
},
"devDependencies": {
"@types/node": "^13.13.45",
"eslint": "^7.20.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-import": "^2.22.1",
"prettier": "^2.2.1"
}
}