{
  "name": "apollo-starter-kit",
  "version": "0.1.1",
  "description": "Minimal set of code to write a GraphQL server with Apollo graphql-tools",
  "scripts": {
    "start": "nodemon ./server.js --exec babel-node",
    "test": "echo \"Error: no test specified\" && exit 1",
    "lint": "eslint ."
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/apollostack/apollo-starter-kit.git"
  },
  "keywords": [
    "Node.js",
    "Javascript",
    "GraphQL",
    "Express",
    "Apollo",
    "Meteor"
  ],
  "author": "Jonas Helfer <jonas@helfer.email>",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/apollostack/apollo-starter-kit/issues"
  },
  "homepage": "https://github.com/apollostack/apollo-starter-kit#readme",
  "dependencies": {
    "body-parser": "^1.15.2",
    "cors": "^2.8.0",
    "express": "4.14.1",
    "graphql": "^0.9.1",
    "graphql-server-express": "^0.5.2",
    "graphql-subscriptions": "^0.2.0",
    "graphql-tools": "^0.9.2",
    "lodash": "^4.15.0",
    "subscriptions-transport-ws": "^0.4.0"
  },
  "devDependencies": {
    "babel-cli": "6.22.2",
    "babel-core": "^6.17.0",
    "babel-eslint": "^7.0.0",
    "babel-plugin-inline-import": "^2.0.1",
    "babel-polyfill": "6.22.0",
    "babel-preset-es2015": "6.22.0",
    "babel-preset-react": "^6.5.0",
    "babel-preset-stage-0": "6.22.0",
    "eslint": "^3.8.1",
    "eslint-config-airbnb": "^14.0.0",
    "eslint-plugin-import": "^2.0.1",
    "eslint-plugin-react": "^6.4.1",
    "nodemon": "^1.9.1"
  },
  "eslintConfig": {
    "parser": "babel-eslint",
    "extends": [
      "airbnb/base",
      "plugin:import/errors"
    ],
    "rules": {
      "no-use-before-define": 0,
      "arrow-body-style": 0,
      "dot-notation": 0,
      "no-console": 0
    },
    "env": {
      "mocha": true
    }
  }
}
