-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 1.06 KB
/
package.json
File metadata and controls
28 lines (28 loc) · 1.06 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
{
"name": "nodejs-graphql-microservices",
"version": "1.0.0",
"description": "A sample GraphQL API Gateway with gRPC back-end microservices.",
"scripts": {
"docs:proto-gen": "./scripts/generate-proto-docs.sh",
"install": "./scripts/install.sh",
"lint": "./scripts/lint.sh",
"build": "./scripts/build.sh",
"docker:build": "docker-compose build",
"docker:start": "docker-compose up",
"docker:teardown": "docker-compose down",
"start": "npm run install && npm run lint && npm run build && npm run docker:build && npm run docker:start"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com:benjsicam/nodejs-graphql-microservices.git"
},
"author": "Benj Sicam <benjsicam@gmail.com> (https://github.com/benjsicam)",
"contributors": [
"Achilles Dinglasan <akzdinglasan@gmail.com> (https://github.com/akzdinglasan)"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/benjsicam/nodejs-graphql-microservices/issues"
},
"homepage": "https://github.com/benjsicam/nodejs-graphql-microservices#readme"
}