-
Notifications
You must be signed in to change notification settings - Fork 23
/
package.json
56 lines (56 loc) · 1.8 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"name": "graphql-transform-federation",
"version": "2.2.0",
"description": "Add GraphQL federation to an existing GraphQL schema",
"main": "dist/transform-federation.js",
"types": "dist/transform-federation.d.ts",
"scripts": {
"test": "jest",
"test:watch": "npm run test -- --watch",
"format": "prettier --check '**/*.{js,ts,json,md}'",
"format:fix": "prettier --write '**/*.{js,ts,json,md}'",
"example:watch": "nodemon --signal SIGINT -e ts,js -x npm run example",
"example": "concurrently 'npm run example:gateway' 'npm run example:transformed-server' 'npm run example:federation-server'",
"example:gateway": "wait-on tcp:4001 && wait-on tcp:4002 && ts-node example/gateway",
"example:transformed-server": "ts-node example/transformed-server",
"example:federation-server": "ts-node example/federation-server",
"prebuild": "rimraf dist",
"build": "tsc",
"prepublishOnly": "npm run format && npm run test && npm run build"
},
"files": [
"src",
"dist",
"README.md"
],
"keywords": [],
"author": "Ruben Oostinga",
"repository": {
"type": "git",
"url": "git+https://github.com/0xR/graphql-transform-federation.git"
},
"license": "ISC",
"devDependencies": {
"@apollo/federation": "^0.20.6",
"@apollo/gateway": "^0.21.3",
"@types/dedent": "^0.7.0",
"@types/graphql": "^14.5.0",
"@types/jest": "^26.0.15",
"@types/node": "^14.14.10",
"apollo-server": "^2.19.0",
"dedent": "^0.7.0",
"graphql": "^14.7.0",
"graphql-tools": "^7.0.2",
"jest": "^26.6.3",
"nodemon": "^2.0.6",
"prettier": "^2.2.0",
"ts-jest": "^26.4.4",
"ts-node": "^9.0.0",
"typescript": "^4.1.2",
"wait-on": "^5.2.0"
},
"peerDependencies": {
"@apollo/federation": "0",
"graphql": "^14.0.0 || ^15.0.0"
}
}