apollo-server/packages/apollo-server-integration-testsuite/package.json
David Glasser e4a6e873f8 Remove graphiql support
ApolloServer builds in graphql-playground rather than graphiql, so we no longer
provide middleware for serving GraphiQL.

If this turns out to be an unpopular choice, we can always add support for
graphiql instead of graphql-playground back in later.

We prefer graphql-playground because it allows you to enter HTTP request
headers, view query history, and explicitly supports graphql@0.13.
2018-06-13 14:00:51 -07:00

38 lines
1 KiB
JSON

{
"name": "apollo-server-integration-testsuite",
"private": true,
"version": "2.0.0-beta.9",
"description": "Apollo Server Integrations testsuite",
"main": "dist/index.js",
"scripts": {
"compile": "tsc",
"prepublish": "npm run compile"
},
"repository": {
"type": "git",
"url": "https://github.com/apollographql/apollo-server/tree/master/packages/apollo-server-integration-testsuite"
},
"keywords": [],
"author": "Jonas Helfer <jonas@helfer.email>",
"license": "MIT",
"bugs": {
"url": "https://github.com/apollographql/apollo-server/issues"
},
"homepage": "https://github.com/apollographql/apollo-server#readme",
"engines": {
"node": ">=8"
},
"dependencies": {
"apollo-server-core": "^2.0.0-beta.9",
"apollo-server-module-operation-store": "^2.0.0-beta.8"
},
"typings": "dist/index.d.ts",
"typescript": {
"definition": "dist/index.d.ts"
},
"devDependencies": {
"apollo-link-persisted-queries": "^0.2.0",
"graphql-tag": "^2.9.2",
"js-sha256": "^0.9.0"
}
}