-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
43 lines (43 loc) · 1.2 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
{
"name": "nodejs-grpc-labs",
"version": "1.0.0",
"type": "module",
"description": "Random gRPC + Node.js samples and experiments for learning/reference purposes",
"scripts": {
"lint": "eslint --max-warnings=0 '{src,__tests__}/**/*.js'",
"lint:fix": "eslint --fix '{src,__tests__}/**/*.js'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/benjsicam/nodejs-grpc-labs"
},
"keywords": [
"grpc",
"grpc-client",
"grpc-server",
"grpc-streaming",
"grpc-client-streaming",
"grpc-server-streaming",
"grpc-duplex-streaming"
],
"author": "Benj Sicam <[email protected]> (https://github.com/benjsicam)",
"license": "MIT",
"bugs": {
"url": "https://github.com/benjsicam/nodejs-grpc-labs/issues"
},
"homepage": "https://github.com/benjsicam/nodejs-grpc-labs#readme",
"dependencies": {
"@faker-js/faker": "^7.6.0",
"@grpc/grpc-js": "^1.8.12",
"@grpc/proto-loader": "^0.7.5",
"google-protobuf": "^3.21.2",
"lodash": "^4.17.21"
},
"devDependencies": {
"eslint": "^8.35.0",
"eslint-config-prettier": "^8.7.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^4.2.1",
"prettier": "^2.8.4"
}
}