Skip to content

Instantly share code, notes, and snippets.

@daniele-zurico
Created June 5, 2018 10:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save daniele-zurico/c013d9e434a08a0412933dc6b7118930 to your computer and use it in GitHub Desktop.
Save daniele-zurico/c013d9e434a08a0412933dc6b7118930 to your computer and use it in GitHub Desktop.
{
"name": "kit",
"version": "1.0.0",
"description": "Starting point for the Apollo GraphQL Server tutorial.",
"main": "src/server.ts",
"dependencies": {
"apollo-server": "^2.0.0-beta.2",
"express": "^4.16.3",
"graphql": "0.13.2",
"graphql-tools": "^3.0.0-beta.0",
"mongoose": "^5.1.3",
"ts-node": "^6.0.5",
"typescript": "^2.8.3"
},
"devDependencies": {
"@types/express": "^4.11.1",
"@types/graphql": "^0.13.1",
"@types/mongoose": "^5.0.15",
"graphql-typings": "0.0.1-beta-2",
"nodemon": "^1.17.5",
"prettier": "1.13.3",
"tslint": "^5.10.0"
},
"scripts": {
"dev": "nodemon --watch src && tslint-check",
"build": "tsc",
"prod": "npm run build && npm run tslint && npm run start",
"tslint": "tslint -c tslint.json -p tsconfig.json",
"start": "nodemon ./dist/server.js",
"tslint-check": "tslint-config-prettier-check ./tslint.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/daniele-zurico/graphql-setup"
},
"author": "Daniele Zurico",
"license": "MIT",
"bugs": {
"url": "https://github.com/daniele-zurico/graphql-setup"
},
"homepage": "https://github.com/daniele-zurico/graphql-setup#readme"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment