-
-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
65 lines (65 loc) · 1.61 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
57
58
59
60
61
62
63
64
65
{
"name": "@graphile/federation",
"version": "0.1.0",
"description": "Apollo Federation support for Graphile Engine",
"main": "build/index.js",
"scripts": {
"build": "tsc",
"lint": "eslint 'src/**/*.ts'",
"watch": "tsc --watch",
"test": "./scripts/test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/graphile/federation.git"
},
"keywords": [
"apollo",
"federation",
"graphile",
"postgraphile",
"engine",
"postgres",
"pg",
"postgresql"
],
"author": "Benjie Gillam <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/graphile/federation/issues"
},
"homepage": "https://github.com/graphile/federation#readme",
"dependencies": {
"@apollo/federation": "^0.25.0",
"@graphql-tools/wrap": "^8.0.0",
"@types/graphql": "^14.5.0",
"graphile-utils": "^4.4.5"
},
"devDependencies": {
"@apollo/gateway": "^0.28.1",
"@types/jest": "^26.0.23",
"@typescript-eslint/eslint-plugin": "^4.23.0",
"@typescript-eslint/parser": "^4.23.0",
"apollo-server": "^2.24.0",
"axios": "^0.28.0",
"eslint": "^7.26.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-jest": "^24.3.6",
"eslint-plugin-prettier": "^3.4.0",
"eslint_d": "^10.1.1",
"jest": "^26.6.3",
"jest-serializer-graphql-schema": "^4.10.0",
"pg": ">=7.12.1 <9",
"postgraphile": "^4.4.4",
"postgraphile-core": "^4.4.5",
"prettier": "^2.3.0",
"ts-jest": "^26.5.6",
"typescript": "^4.3.5"
},
"peerDependencies": {
"graphile-build": "^4.4.2"
},
"files": [
"build"
]
}