apollo-server/packages/apollo-server-hapi/package.json

52 lines
1.3 KiB
JSON
Raw Normal View History

{
"name": "apollo-server-hapi",
"version": "2.0.0",
"description": "Production-ready Node.js GraphQL server for Hapi",
"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-hapi"
},
2018-03-26 17:20:44 +03:00
"keywords": [
"GraphQL",
"Apollo",
"Hapi",
"Server",
"Javascript"
],
"author": "Jonas Helfer <jonas@helfer.email>",
"license": "MIT",
"bugs": {
"url": "https://github.com/apollographql/apollo-server/issues"
},
"homepage": "https://github.com/apollographql/apollo-server#readme",
"engines": {
2018-06-13 14:56:09 -07:00
"node": ">=6"
},
"dependencies": {
"@apollographql/graphql-playground-html": "^1.6.0",
"accept": "^3.0.2",
"apollo-server-core": "2.0.0",
"apollo-upload-server": "^5.0.0",
"boom": "^7.1.0",
"graphql-subscriptions": "^0.5.8",
"graphql-tools": "^3.0.4"
},
"devDependencies": {
"@types/hapi": "17.0.16",
"apollo-server-integration-testsuite": "2.0.0",
"hapi": "17.5.2"
},
"peerDependencies": {
"graphql": "^0.12.0 || ^0.13.0 || ^14.0.0"
},
"typings": "dist/index.d.ts",
"typescript": {
"definition": "dist/index.d.ts"
}
}