-
Notifications
You must be signed in to change notification settings - Fork 89
/
Copy pathpackage.json
25 lines (25 loc) · 1010 Bytes
/
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
{
"name": "nestjs-graphql-microservices",
"version": "1.0.0",
"description": "A sample GraphQL API Gateway with gRPC back-end microservices built using the NestJS framework.",
"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/nestjs-graphql-microservices.git"
},
"author": "Benj Sicam <benjsicam@gmail.com> (https://github.com/benjsicam)",
"license": "MIT",
"bugs": {
"url": "https://github.com/benjsicam/nestjs-graphql-microservices/issues"
},
"homepage": "https://github.com/benjsicam/nestjs-graphql-microservices#readme"
}