forked from graphile/federation
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
68 lines (68 loc) · 1.79 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
66
67
68
{
"name": "postgraphile-federation-plugin",
"version": "0.8.0",
"description": "Apollo Federation support for Graphile Engine",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist/*"
],
"scripts": {
"build": "tsc -p ./tsconfig.json",
"lint": "eslint 'src/**/*.ts'",
"watch": "tsc --watch",
"test": "./node_modules/.bin/jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mgagliardo91/postgraphile-federation-plugin.git"
},
"keywords": [
"apollo",
"federation",
"graphile",
"postgraphile",
"engine",
"postgres",
"pg",
"postgresql"
],
"author": "Michael Gagliardo",
"license": "MIT",
"bugs": {
"url": "https://github.com/mgagliardo91/postgraphile-federation-plugin/issues"
},
"homepage": "https://github.com/mgagliardo91/postgraphile-federation-plugin#readme",
"dependencies": {
"@apollo/subgraph": "^0.6.1",
"@graphql-tools/wrap": "^10",
"graphile-utils": "^4.12.2",
"graphql": "^15.8.0"
},
"devDependencies": {
"@apollo/gateway": "^0.54.1",
"@types/jest": "^27.0.2",
"@typescript-eslint/eslint-plugin": "^7.1.1",
"@typescript-eslint/parser": "^7.1.0",
"apollo-server": "^3.3.0",
"axios": "^0.27.2",
"eslint": "^8.0.0",
"eslint_d": "^13.0.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-jest": "^28.2.0",
"eslint-plugin-jsdoc": "^48",
"eslint-plugin-prettier": "^5.0.0",
"jest": "^27.2.4",
"jest-serializer-graphql-schema": "^4.10.0",
"pg": "^8.7.1",
"postgraphile": "^4.11.0",
"postgraphile-core": "^4.12.1",
"prettier": "^3.0.0",
"ts-jest": "^27.0.5",
"typescript": "^4.4.3"
},
"peerDependencies": {
"graphile-build": "^4.12.0",
"graphile-build-pg": "^4.12.1"
}
}