forked from phryneas/federation
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.37 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
{
"name": "@graphile/federation",
"version": "0.0.3",
"description": "Apollo Federation support for Graphile Engine",
"main": "build/index.js",
"scripts": {
"build": "tsc",
"lint": "eslint 'src/**/*.ts'",
"watch": "tsc --watch",
"test": "jest"
},
"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.6.8",
"@types/graphql": "^14.0.0",
"graphile-utils": "^4.4.2",
"graphql-tools": "^4.0.5"
},
"devDependencies": {
"@types/jest": "^24.0.13",
"@typescript-eslint/eslint-plugin": "^1.7.0",
"@typescript-eslint/parser": "^1.7.0",
"eslint": "^5.15.3",
"eslint-config-prettier": "^4.1.0",
"eslint-plugin-jest": "^22.4.1",
"eslint-plugin-prettier": "^3.0.1",
"eslint_d": "^7.3.0",
"jest": "^24.8.0",
"prettier": "^1.16.4",
"ts-jest": "^24.0.2",
"typescript": "^3.4.4"
},
"peerDependencies": {
"graphile-build": "^4.4.2"
},
"files": [
"build"
]
}