{ "name": "apollo-server-express", "version": "2.0.0", "description": "Production-ready Node.js GraphQL server for Express and Connect", "main": "dist/index.js", "types": "dist/index.d.ts", "scripts": { "compile": "tsc", "prepare": "npm run compile", "watch": "tsc -w" }, "repository": { "type": "git", "url": "https://github.com/apollographql/apollo-server/tree/master/packages/apollo-server-express" }, "keywords": [ "GraphQL", "Apollo", "Server", "Express", "Connect", "Javascript" ], "author": "opensource@apollographql.com", "license": "MIT", "bugs": { "url": "https://github.com/apollographql/apollo-server/issues" }, "homepage": "https://github.com/apollographql/apollo-server#readme", "engines": { "node": ">=6" }, "dependencies": { "@apollographql/graphql-playground-html": "^1.6.0", "@types/accepts": "^1.3.5", "@types/body-parser": "1.17.0", "@types/cors": "^2.8.4", "@types/express": "4.16.0", "accepts": "^1.3.5", "apollo-server-core": "file:../apollo-server-core", "apollo-upload-server": "^5.0.0", "body-parser": "^1.18.3", "cors": "^2.8.4", "graphql-subscriptions": "^0.5.8", "graphql-tools": "^3.0.4", "type-is": "^1.6.16" }, "devDependencies": { "apollo-server-integration-testsuite": "file:../apollo-server-integration-testsuite" }, "peerDependencies": { "graphql": "^0.12.0 || ^0.13.0 || ^14.0.0" }, "jest": { "testEnvironment": "node", "transform": { "^.+\\.(ts|js)$": "ts-jest" }, "moduleFileExtensions": [ "ts", "js", "json" ], "testRegex": "src/__tests__/.*$", "testPathIgnorePatterns": [ "/node_modules/", "/lib/", "test-utils" ], "globals": { "ts-jest": { "skipBabel": true } } } }