{ "name": "apollo-server-micro", "version": "2.0.0", "description": "Production-ready Node.js GraphQL server for Micro", "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-micro" }, "keywords": [ "GraphQL", "Apollo", "Micro", "Server", "Javascript", "ZEIT" ], "author": "opensource@apollographql.com", "license": "MIT", "bugs": { "url": "https://github.com/apollographql/apollo-server/issues" }, "homepage": "https://github.com/apollographql/apollo-server#readme", "dependencies": { "@apollographql/graphql-playground-html": "^1.6.0", "accept": "^3.0.2", "apollo-server-core": "file:../apollo-server-core", "apollo-upload-server": "^5.0.0", "micro": "^9.3.2" }, "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 } } } }