graphql-join
Version:
Join types together in your schema declaratively with SDL.
62 lines (61 loc) • 1.36 kB
JSON
{
"name": "graphql-join",
"version": "0.3.0",
"description": "Join types together in your schema declaratively with SDL.",
"main": "build/src/index.js",
"types": "build/src/index.d.ts",
"files": [
"build/src"
],
"license": "MIT",
"keywords": [
"GraphQL",
"Join",
"Batch",
"Stitching",
"Schema Stitching",
"JavaScript",
"TypeScript"
],
"repository": {
"type": "git",
"url": "git+https://github.com/jakeblaxon/graphql-join.git"
},
"scripts": {
"test": "jest",
"lint": "gts lint",
"clean": "gts clean",
"compile": "tsc",
"fix": "gts fix",
"prepare": "npm run compile",
"pretest": "npm run compile",
"posttest": "npm run lint"
},
"peerDependencies": {
"graphql": "*"
},
"dependencies": {
"@graphql-tools/batch-delegate": "^7.0.2",
"@graphql-tools/delegate": "^7.1.2",
"@graphql-tools/stitch": "^7.5.1",
"@graphql-tools/wrap": "^7.0.5",
"lodash": "^4.17.21"
},
"devDependencies": {
"@graphql-tools/schema": "^7.1.3",
"@graphql-tools/utils": "^7.7.3",
"@types/jest": "^26.0.22",
"@types/lodash": "^4.14.168",
"@types/node": "^14.14.41",
"graphql": "^15.5.0",
"gts": "^3.1.0",
"jest": "^26.6.3",
"nexus": "^1.0.0",
"typescript": "^4.2.4"
},
"jest": {
"roots": [
"build"
]
}
}