{ "name": "apollo-server-koa", "version": "2.0.0", "description": "Production-ready Node.js GraphQL server for Koa", "main": "dist/index.js", "types": "dist/index.d.ts", "scripts": { "clean": "rm -rf dist", "compile": "tsc", "prepare": "npm run clean && npm run compile" }, "repository": { "type": "git", "url": "https://github.com/apollographql/apollo-server/tree/master/packages/apollo-server-koa" }, "keywords": [ "GraphQL", "Apollo", "Server", "Koa", "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", "@koa/cors": "^2.2.1", "@types/accepts": "^1.3.5", "@types/cors": "^2.8.4", "@types/koa": "^2.0.46", "@types/koa-bodyparser": "^5.0.1", "@types/koa-compose": "^3.2.2", "@types/koa__cors": "^2.2.1", "accepts": "^1.3.5", "apollo-server-core": "file:../apollo-server-core", "apollo-upload-server": "^5.0.0", "graphql-subscriptions": "^0.5.8", "graphql-tools": "^3.0.4", "koa": "2.5.2", "koa-bodyparser": "^3.0.0", "koa-router": "^7.4.0", "type-is": "^1.6.16" }, "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 } } } }