mirror of
https://github.com/vale981/apollo-server
synced 2025-03-16 15:56:41 -04:00

* Initial basic Micro integration * Wire up health check capabilities * Add playground support; Refactoring * Add custom path support * Add file upload support * Add subscription support * Documentation and formatting updates * Wire up tests * Add Node 10 workaround for file upload testing * Code review changes (docs, naming, formatting) * Adjust exports to line up with other integrations * micro: add graphql to npm install and lines to highlight in docs
46 lines
1.2 KiB
JSON
46 lines
1.2 KiB
JSON
{
|
|
"name": "apollo-server-micro",
|
|
"version": "2.0.0-rc.5",
|
|
"description": "Production-ready Node.js GraphQL server for Micro",
|
|
"main": "dist/index.js",
|
|
"scripts": {
|
|
"compile": "tsc",
|
|
"watch": "tsc -w",
|
|
"prepare": "npm run compile"
|
|
},
|
|
"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": {
|
|
"accept": "^3.0.2",
|
|
"apollo-server-core": "^2.0.0-rc.5",
|
|
"apollo-upload-server": "^5.0.0",
|
|
"graphql-playground-html": "^1.6.0",
|
|
"micro": "^9.3.2"
|
|
},
|
|
"devDependencies": {
|
|
"@types/micro": "^7.3.1",
|
|
"apollo-server-integration-testsuite": "^2.0.0-rc.5",
|
|
"request-promise": "^4.2.2",
|
|
"test-listen": "^1.1.0"
|
|
},
|
|
"typings": "dist/index.d.ts",
|
|
"typescript": {
|
|
"definition": "dist/index.d.ts"
|
|
}
|
|
}
|