forked from apollosolutions/federation-subscription-tools
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
32 lines (32 loc) · 909 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
31
32
{
"name": "federation-subscription-tools",
"version": "0.2.0",
"description": "A set of demonstration utilities to facilitate GraphQL subscription usage alongside a federated data graph.",
"main": "dist/index.js",
"types": "dist/types.d.ts",
"keywords": [],
"author": "",
"license": "ISC",
"scripts": {
"compile": "tsc --build tsconfig.json",
"compile:clean": "tsc --build tsconfig.json --clean",
"watch": "tsc --build tsconfig.json --watch"
},
"dependencies": {
"@apollo/client": "^3.7.1",
"apollo-datasource": "^0.7.3",
"apollo-server": "^3.11.1",
"graphql-parse-resolve-info": "4.12.0",
"graphql-tools": "^8.3.11",
"lodash": "^4.17.21",
"node-fetch": "^2.6.1"
},
"devDependencies": {
"@types/lodash": "^4.14.188",
"@types/node-fetch": "^2.6.2",
"typescript": "^4.8.4"
},
"peerDependencies": {
"graphql": "^16.6.0"
}
}