Last active
May 23, 2018 17:38
-
-
Save thoughtspeed7/ca963126a7379cc675a442a5bb002050 to your computer and use it in GitHub Desktop.
Apollo GraphQL Server on Google App Engine in under 5 minutes!
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "name": "apollo-graphql-server-google-app-engine", | |
| "version": "1.0.0", | |
| "description": "Apollo GraphQL Server on Google App Engine in under 5 minutes!", | |
| "main": "index.js", | |
| "scripts": { | |
| "start": "node index.js", | |
| "test": "echo \"Error: no test specified\" && exit 1" | |
| }, | |
| "author": "Raj Chaudhary", | |
| "license": "ISC", | |
| "engines": { | |
| "node": ">=8.11.2", | |
| "npm": "5.x" | |
| }, | |
| "dependencies": { | |
| "apollo-server-express": "^1.3.6", | |
| "body-parser": "^1.18.3", | |
| "express": "^4.16.3", | |
| "graphql": "^0.13.2", | |
| "graphql-tools": "^3.0.2" | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment