-
Notifications
You must be signed in to change notification settings - Fork 864
/
package.json
39 lines (39 loc) · 1.38 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
{
"name": "micro-livraria",
"version": "1.0.0",
"description": "Toy example of microservice",
"main": "",
"scripts": {
"start": "run-p start-frontend start-controller start-shipping start-inventory",
"start-controller": "nodemon services/controller/index.js",
"start-shipping": "nodemon services/shipping/index.js",
"start-inventory": "nodemon services/inventory/index.js",
"start-frontend": "serve -p 5000 services/frontend",
"exec": "run-p start-frontend exec-controller exec-shipping exec-inventory",
"exec-controller": "node services/controller/index.js",
"exec-shipping": "node services/shipping/index.js",
"exec-inventory": "node services/inventory/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/aserg-ufmg/micro-livraria.git"
},
"author": "Rodrigo",
"license": "MIT",
"bugs": {
"url": "https://github.com/aserg-ufmg/micro-livraria/issues"
},
"homepage": "https://github.com/aserg-ufmg/micro-livraria#readme",
"dependencies": {
"@grpc/grpc-js": "^1.5.2",
"@grpc/proto-loader": "^0.6.9",
"cors": "^2.8.5",
"express": "^4.17.1",
"google-protobuf": "^3.19.3"
},
"devDependencies": {
"serve": "^13.0.2",
"nodemon": "^2.0.7",
"npm-run-all": "^4.1.5"
}
}