-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
30 lines (30 loc) · 998 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
{
"name": "federation-demo",
"main": "gateway.js",
"scripts": {
"start-gateway": "nodemon gateway.js",
"start-service-accounts": "nodemon services/accounts/index.js",
"start-service-reviews": "nodemon services/reviews/index.js",
"start-service-products": "nodemon services/products/index.js",
"start-service-inventory": "nodemon services/inventory/index.js",
"start-services": "concurrently \"npm:start-service-*\"",
"postinstall": "lerna bootstrap",
"keycloak:seed": "node scripts/initKeycloak.js"
},
"devDependencies": {
"lerna": "latest",
"nodemon": "latest",
"concurrently": "latest",
"keycloak-request-token": "0.1.0",
"keycloak-admin": "1.13.0"
},
"dependencies": {
"@apollo/gateway": "latest",
"apollo-server": "latest",
"express-session": "^1.17.1",
"graphql": "latest",
"graphql-playground-middleware-express": "^1.7.14",
"keycloak-connect": "^9.0.3",
"keycloak-connect-graphql": "^0.4.0"
}
}