package.json 775 B

12345678910111213141516171819202122232425262728293031323334353637
  1. {
  2. "name": "express-graphql",
  3. "version": "0.9.0",
  4. "description": "Production ready GraphQL HTTP middleware.",
  5. "license": "MIT",
  6. "main": "index.js",
  7. "types": "index.d.ts",
  8. "homepage": "https://github.com/graphql/express-graphql",
  9. "bugs": {
  10. "url": "https://github.com/graphql/express-graphql/issues"
  11. },
  12. "repository": {
  13. "type": "git",
  14. "url": "https://github.com/graphql/express-graphql.git"
  15. },
  16. "keywords": [
  17. "express",
  18. "restify",
  19. "connect",
  20. "http",
  21. "graphql",
  22. "middleware",
  23. "api"
  24. ],
  25. "engines": {
  26. "node": ">= 8.x"
  27. },
  28. "dependencies": {
  29. "accepts": "^1.3.7",
  30. "content-type": "^1.0.4",
  31. "http-errors": "^1.7.3",
  32. "raw-body": "^2.4.1"
  33. },
  34. "peerDependencies": {
  35. "graphql": "^14.4.1"
  36. }
  37. }