-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 724 Bytes
/
Copy pathpackage.json
File metadata and controls
26 lines (26 loc) · 724 Bytes
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
{
"name": "apollo-managed-federation",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start-registry": "cd ../.. && npm run dev",
"start-gateway": "nodemon gateway.js",
"start-service-accounts": "nodemon accounts.js",
"start-service-reviews": "nodemon reviews.js",
"start-service-products": "nodemon products.js",
"start-service-inventory": "nodemon inventory.js",
"start-services": "concurrently \"npm:start-service-*\""
},
"author": "",
"license": "ISC",
"devDependencies": {
"nodemon": "latest",
"concurrently": "latest",
"httpie": "latest"
},
"dependencies": {
"@apollo/gateway": "^0.28.1",
"apollo-server": "^2.24.1"
}
}