2017-07-17 16:29:40 -07:00
|
|
|
{
|
|
|
|
"name": "apollo-server-express",
|
2018-07-19 12:49:55 -07:00
|
|
|
"version": "2.0.0",
|
2018-03-26 17:20:44 +03:00
|
|
|
"description": "Production-ready Node.js GraphQL server for Express and Connect",
|
2017-07-17 16:29:40 -07:00
|
|
|
"main": "dist/index.js",
|
|
|
|
"scripts": {
|
|
|
|
"compile": "tsc",
|
|
|
|
"prepublish": "npm run compile"
|
|
|
|
},
|
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
2018-03-26 17:20:44 +03:00
|
|
|
"url": "https://github.com/apollographql/apollo-server/tree/master/packages/apollo-server-express"
|
2017-07-17 16:29:40 -07:00
|
|
|
},
|
|
|
|
"keywords": [
|
|
|
|
"GraphQL",
|
|
|
|
"Apollo",
|
|
|
|
"Server",
|
|
|
|
"Express",
|
|
|
|
"Connect",
|
|
|
|
"Javascript"
|
|
|
|
],
|
2018-05-01 06:09:48 -07:00
|
|
|
"author": "opensource@apollographql.com",
|
2017-07-17 16:29:40 -07:00
|
|
|
"license": "MIT",
|
|
|
|
"bugs": {
|
|
|
|
"url": "https://github.com/apollographql/apollo-server/issues"
|
|
|
|
},
|
|
|
|
"homepage": "https://github.com/apollographql/apollo-server#readme",
|
2018-06-11 13:21:51 +02:00
|
|
|
"engines": {
|
2018-06-13 14:56:09 -07:00
|
|
|
"node": ">=6"
|
2018-06-11 13:21:51 +02:00
|
|
|
},
|
2017-07-17 16:29:40 -07:00
|
|
|
"dependencies": {
|
2018-06-29 11:27:36 -07:00
|
|
|
"@apollographql/graphql-playground-html": "^1.6.0",
|
2018-05-01 06:09:48 -07:00
|
|
|
"@types/accepts": "^1.3.5",
|
2018-06-22 10:15:59 +02:00
|
|
|
"@types/body-parser": "1.17.0",
|
|
|
|
"@types/cors": "^2.8.4",
|
|
|
|
"@types/express": "4.16.0",
|
2018-05-01 06:09:48 -07:00
|
|
|
"accepts": "^1.3.5",
|
2018-07-19 12:49:55 -07:00
|
|
|
"apollo-server-core": "2.0.0",
|
2018-05-29 15:58:52 -07:00
|
|
|
"apollo-upload-server": "^5.0.0",
|
2018-05-20 03:52:54 -07:00
|
|
|
"body-parser": "^1.18.3",
|
2018-05-01 06:09:48 -07:00
|
|
|
"cors": "^2.8.4",
|
2018-06-27 16:09:38 -03:00
|
|
|
"graphql-subscriptions": "^0.5.8",
|
|
|
|
"graphql-tools": "^3.0.4",
|
2018-06-13 15:19:08 -07:00
|
|
|
"type-is": "^1.6.16"
|
2017-07-17 16:29:40 -07:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2018-04-17 05:01:51 +00:00
|
|
|
"@types/connect": "3.4.32",
|
2018-07-14 06:32:03 +00:00
|
|
|
"@types/multer": "1.3.7",
|
2018-07-19 12:49:55 -07:00
|
|
|
"apollo-datasource-rest": "0.1.0",
|
|
|
|
"apollo-server-integration-testsuite": "2.0.0",
|
2018-02-15 06:00:53 +00:00
|
|
|
"connect": "3.6.6",
|
2018-07-16 09:56:51 -07:00
|
|
|
"express": "4.16.3",
|
|
|
|
"form-data": "2.3.2",
|
2018-07-14 06:32:03 +00:00
|
|
|
"multer": "1.3.1",
|
2018-07-16 09:56:51 -07:00
|
|
|
"node-fetch": "2.1.2",
|
|
|
|
"qs-middleware": "1.0.3"
|
2017-07-17 16:29:40 -07:00
|
|
|
},
|
2018-06-22 19:55:08 -03:00
|
|
|
"peerDependencies": {
|
|
|
|
"graphql": "^0.12.0 || ^0.13.0 || ^14.0.0"
|
|
|
|
},
|
2017-07-17 16:29:40 -07:00
|
|
|
"typings": "dist/index.d.ts",
|
|
|
|
"typescript": {
|
|
|
|
"definition": "dist/index.d.ts"
|
|
|
|
}
|
|
|
|
}
|