-
Notifications
You must be signed in to change notification settings - Fork 37
/
Copy pathpackage.json
26 lines (26 loc) · 975 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
{
"name": "stitching-directives-sdl",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"start-accounts": "nodemon -e js,graphql --watch services/accounts services/accounts/index.js",
"start-inventory": "nodemon -e js,graphql --watch services/inventory services/inventory/index.js",
"start-products": "nodemon -e js,graphql --watch services/products services/products/index.js",
"start-reviews": "nodemon -e js,graphql --watch services/reviews services/reviews/index.js",
"start-gateway": "nodemon -e js,graphql index.js",
"start": "concurrently \"yarn:start-*\""
},
"dependencies": {
"@graphql-tools/schema": "^7.0.0",
"@graphql-tools/stitch": "^7.2.1",
"@graphql-tools/stitching-directives": "^1.2.0",
"concurrently": "^5.3.0",
"cross-fetch": "^3.0.6",
"express": "^4.17.1",
"express-graphql": "^0.12.0",
"graphql": "^15.4.0",
"nodemon": "^2.0.6",
"wait-on": "^5.2.1"
}
}