-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
42 lines (42 loc) · 1.13 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
40
41
42
{
"name": "nexus-stitching-example",
"version": "1.0.0",
"description": "",
"main": "index.js",
"private": true,
"scripts": {
"start:domain": "cd services/domain && yarn dev",
"start:score": "cd services/score && yarn dev",
"start:bff": "cd services/bff && yarn dev",
"start:gateway": "ts-node-dev --no-notify --respawn src/gateway.ts",
"start": "concurrently \"yarn:start:*\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/nayaabkhan/nexus-stitching-example.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/nayaabkhan/nexus-stitching-example/issues"
},
"homepage": "https://github.com/nayaabkhan/nexus-stitching-example#readme",
"dependencies": {
"@graphql-tools/stitch": "^7.5.1",
"@graphql-tools/wrap": "^7.0.5",
"apollo-server": "^2.22.2",
"cross-fetch": "^3.1.4",
"graphql": "^15.5.0",
"wait-on": "^5.3.0"
},
"devDependencies": {
"@types/wait-on": "^5.2.0",
"concurrently": "^6.0.1",
"ts-node-dev": "^1.1.6",
"typescript": "^4.2.4"
},
"workspaces": [
"services/*"
]
}