Skip to content

Instantly share code, notes, and snippets.

@aligos
Last active November 5, 2016 07:26
Show Gist options
  • Save aligos/3dfc4c044f4627fd7bd79d26aa93946c to your computer and use it in GitHub Desktop.
Save aligos/3dfc4c044f4627fd7bd79d26aa93946c to your computer and use it in GitHub Desktop.
package json votemon-server
{
"name": "votemon-server",
"version": "0.1.0",
"description": "graphql server votemon",
"scripts": {
"start": "nodemon ./server.js --exec babel-node",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint ."
},
"main": "server.js",
"repository": {
"url": "https://github.com/aligos/votemon-server.git",
"type": "git"
},
"author": "Rahmat Aligos",
"license": "MIT",
"dependencies": {
"body-parser": "^1.15.2",
"cors": "^2.8.1",
"express": "^4.14.0",
"graphql": "^0.7.2",
"graphql-server-express": "^0.4.3",
"graphql-subscriptions": "^0.2.1",
"graphql-tools": "^0.8.0",
"lodash": "^4.16.6",
"subscriptions-transport-ws": "^0.3.0"
},
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-core": "^6.18.2",
"babel-eslint": "^7.1.0",
"babel-plugin-inline-import": "^2.0.4",
"babel-polyfill": "^6.16.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-0": "^6.16.0",
"eslint": "^3.9.1",
"eslint-config-airbnb": "^12.0.0",
"eslint-plugin-import": "^2.1.0",
"eslint-plugin-react": "^6.5.0",
"nodemon": "^1.11.0"
},
"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
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment