forked from hmake98/nestjs-microservices
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 924 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
26
27
28
29
30
31
32
33
34
35
36
{
"name": "nestjs-microservices",
"version": "1.0.0",
"description": "Nestjs Microservices Boilerplate",
"scripts": {
"format": "prettier --write \"**/src/**/*.ts\"",
"start": "sh run.sh",
"build": "sh build.sh",
"clean": "sh clean.sh",
"service-install": "sh install.sh",
"stop": "docker-compose down",
"prod": "docker-compose -f docker-compose.prod.yml up"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hmake98/nestjs-microservices.git"
},
"keywords": [
"microservices",
"nestjs"
],
"author": "hmake98",
"license": "MIT",
"bugs": {
"url": "https://github.com/hmake98/nestjs-microservices/issues"
},
"homepage": "https://github.com/hmake98/nestjs-microservices#readme",
"devDependencies": {
"@nestjs/cli": "^8.2.1",
"cross-env": "^7.0.3",
"prettier": "^2.5.1"
},
"dependencies": {
"dotenv": "^16.0.0"
}
}