-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1.34 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
{
"name": "apollo-federation-implementations",
"scripts": {
"build": "concurrently \"npm:build:*\"",
"docker": "concurrently \"npm:docker:*\"",
"start": "concurrently \"npm:start:*\"",
"start:graph-router": "node dist/graph-router.js",
"start:users": "node dist/subgraphs/users.js",
"start:inventory": "node dist/subgraphs/inventory.js",
"build:compile": "tsc",
"build:supergraph": "rover supergraph compose --config supergraph.yaml > supergraph.graphql",
"docker:inventory": "docker build --file=subgraphs/inventory/Dockerfile --tag=apollo-federation-implementations/inventory subgraphs/inventory",
"docker:users": "docker build --file=subgraphs/users/Dockerfile --tag=apollo-federation-implementations/users subgraphs/users",
"setup": "npm run build && npm run docker",
"test": "node dist/index.js",
"test:jest": "jest src"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"dependencies": {
"debug": "^4.3.2",
"execa": "^5.1.1",
"graphql": "^15.5.0",
"jest": "^27.0.6",
"make-fetch-happen": "^8.0.14",
"ts-jest": "^27.0.5"
},
"devDependencies": {
"@apollo/rover": "^0.3.0",
"@types/jest": "^27.0.1",
"@types/make-fetch-happen": "^9.0.0",
"@types/node": "^16.4.13",
"@types/yargs": "^17.0.2",
"concurrently": "^6.2.0",
"typescript": "^4.3.2"
}
}