UNPKG

@digicat/cf-graphql

Version:

Generate a GraphQL schema out of your Contentful space

83 lines (82 loc) 2.3 kB
{ "name": "@digicat/cf-graphql", "description": "Generate a GraphQL schema out of your Contentful space", "version": "0.10.0", "license": "MIT", "repository": "contentful-labs/cf-graphql", "contributors": [ { "name": "Jakub Elżbieciak", "email": "jelz@post.pl", "url": "https://elzbieciak.pl" }, { "name": "Michael Elsdörfer", "email": "michael@elsdoerfer.com", "url": "https://blog.elsdoerfer.name" }, { "name": "Frederik Lölhöffel", "email": "frederik@contentful.com", "url": "https://twitter.com/loewensprung" }, { "name": "Stefan Judis", "email": "stefanjudis@gmail.com", "url": " https://www.stefanjudis.de" }, { "name": "Pedro Valentim", "email": "pedro@vlt.im", "url": "https://github.com/pvalentim" } ], "keywords": [ "graphql", "contentful", "graph", "schema", "cda" ], "main": "src/index.js", "scripts": { "dev": "nodemon dev/server.js", "dump": "mkdirp dump && npm run dump-graph && npm run dump-schema", "dump-graph": "graphqlviz http://localhost:4000/graphql | dot -Tpng -o dump/graph.png", "dump-schema": "fetch-graphql-schema http://localhost:4000/graphql -r -o dump/schema.graphql", "lint": "eslint 'src/**/*.js' 'test/**/*.js' 'dev/**/*.js'", "test": "tape 'test/**/*.js'", "coverage": "istanbul cover tape 'test/**/*.js'", "codecov": "cat coverage/coverage.json | codecov" }, "dependencies": { "@contentful/rich-text-html-renderer": "^13.4.0", "dataloader": "^1.3.0", "lodash.camelcase": "^4.3.0", "lodash.chunk": "^4.2.0", "lodash.get": "^4.4.2", "lodash.upperfirst": "^4.3.1", "node-fetch": "^1.7.3", "pluralize": "^7.0.0", "warning": "^4.0.3" }, "devDependencies": { "codecov": "^3.6.5", "eslint": "^6.8.0", "express": "^4.17.1", "express-graphql": "^0.9.0", "fetch-graphql-schema": "^0.2.1", "graphql": "^14.6.0", "graphqlviz": "^2.0.1", "istanbul": "^0.4.5", "just-extend": "1.1.22", "mkdirp": "^0.5.1", "nodemon": "^2.0.3", "proxyquire": "^1.8.0", "sinon": "^9.0.2", "tape": "^4.8.0" }, "peerDependencies": { "graphql": "^0.13.0 || ^14.0.0 || ^15.0.0" } }