-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.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
40
41
42
43
44
45
46
{
"name": "gamoraa",
"version": "1.0.1",
"description": "Simplest framework for building GRPC services",
"main": "dist/src/server.js",
"types": "dist/src/server.d.ts",
"type": "module",
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"format": "prettier --write 'src/**/*.ts'",
"prepublishOnly": "tsc",
"start-helloword": "npm run build && node dist/examples/greeter-server.js",
"route-guide-server": "npm run build && node dist/examples/route-guide-server.js"
},
"repository": {
"type": "git",
"url": "https://github.com/Techie-Qabila/gamoraa.git"
},
"keywords": [
"GRPC",
"rpc",
"proto",
"api",
"service"
],
"author": "Muhammad Ahmed <[email protected]>",
"license": "MIT",
"dependencies": {
"@grpc/proto-loader": "^0.5.3",
"avvio": "^6.3.0",
"google-protobuf": "^3.11.2",
"grpc": "^1.24.2",
"grpc-boom": "^1.0.26",
"pino": "^5.16.0",
"pino-pretty": "^3.5.0"
},
"devDependencies": {
"@types/node": "^12.7.8",
"@types/pino": "^5.15.3",
"prettier": "^1.19.1",
"typescript": "^3.7.4"
}
}