-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 1.3 KB
/
package.json
File metadata and controls
32 lines (32 loc) · 1.3 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
29
30
31
32
{
"name": "microservices-nodejs-docker-gateway-api",
"version": "1.0.0",
"description": "Blog: <https://github.com/luizcalaca/microservices-nodejs-docker-gateway-api>",
"main": "index.js",
"scripts": {
"pre:orders": "cd orders && docker-compose up",
"pre:products": "cd products && docker-compose up",
"pre:api-gateway": "cd api-gateway && npm install",
"pre:start": "npm run pre:orders && npm run pre:products && npm run pre:api-gateway",
"start": "cd api-gateway && node index.js",
"pre": "npm install && cd api-gateway && npm install && cd ../orders && npm install && cd ../products && npm install",
"dev:orders": "cd orders && npm run start",
"dev:products": "cd products && npm run start",
"dev:api-gateway": "cd api-gateway && npm run start",
"dev": "concurrently \"npm run dev:orders\" \"npm run dev:products\" \"npm run dev:api-gateway\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/arifpro/microservices-nodejs-docker-gateway-api.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/arifpro/microservices-nodejs-docker-gateway-api/issues"
},
"homepage": "https://github.com/arifpro/microservices-nodejs-docker-gateway-api#readme",
"dependencies": {
"concurrently": "^8.0.1"
}
}