package.json

Summary

Maintainability
Test Coverage
{
  "name": "ran-boilerplate",
  "version": "0.9.0",
  "main": "server.js",
  "description": "React . Apollo (GraphQL) . Next.js Toolkit",
  "author": "Ilker Guller <me@ilkerguller.com> (http://ilkerguller.com)",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "https://github.com/Sly777/ran"
  },
  "bugs": {
    "url": "https://github.com/Sly777/ran/issues"
  },
  "keywords": [
    "next.js",
    "react",
    "graphql",
    "boilerplate",
    "apollo",
    "styled-components",
    "ran",
    "run",
    "toolkit"
  ],
  "pre-commit": "lint-staged",
  "lint-staged": {
    "*.js": [
      "eslint --fix",
      "git add"
    ]
  },
  "scripts": {
    "start": "cross-env NODE_ENV=production node server.js",
    "start:multicore": "cross-env NODE_ENV=production pm2 start server.js -i max --attach",
    "build": "npm run clean-cache && next build",
    "clean-cache": "rimraf -rf ./node_modules/.cache",
    "dev": "npm run lint && npm run clean-cache && node server.js",
    "lint": "eslint --fix --ext .js pages components containers libraries server helper_scripts",
    "lint:watch": "esw -w --fix components libraries server",
    "analyze": "cross-env ANALYZE_BUILD=true npm run build",
    "setup": "node ./helper_scripts/CL_commands/setup.js && npm run setup:after",
    "setup:clean": "cross-env CLEANSETUP=true node ./helper_scripts/CL_commands/setup.js && npm run setup:after",
    "setup:after": "npm run build",
    "create:page": "node ./helper_scripts/CL_commands/create_page.js",
    "create:route": "node ./helper_scripts/CL_commands/create_route.js",
    "create:container": "node ./helper_scripts/CL_commands/create_container.js",
    "create:component": "node ./helper_scripts/CL_commands/create_component.js",
    "lint-staged": "lint-staged",
    "heroku-postbuild": "npm run build",
    "prestart": "npm run build",
    "release": "release",
    "graphql:play": "graphql playground",
    "graphql:update_schema": "graphql get-schema",
    "graphql:see_graph": "graphql voyager",
    "build:static_export": "cross-env STATIC_EXPORT=true npm run build && cross-env STATIC_EXPORT=true next export",
    "zip-for-beanstalk": "npm prune --production && zip -qr ran-boilerplate.zip . -x \"*.zip\""
  },
  "dependencies": {
    "apollo-boost": "0.1.23",
    "apollo-client-preset": "1.0.8",
    "babel-plugin-import-graphql": "2.6.2",
    "babel-plugin-styled-components": "1.10.0",
    "chalk": "2.4.1",
    "color": "3.1.0",
    "compression": "1.7.3",
    "cors": "2.8.5",
    "cross-env": "5.2.0",
    "dotenv": "6.2.0",
    "dotenv-webpack": "1.6.0",
    "express": "4.16.4",
    "graphql": "^14.0.2",
    "helmet": "3.15.0",
    "ip": "1.1.5",
    "isomorphic-fetch": "2.2.1",
    "js-cookie": "2.2.0",
    "lru-cache": "5.1.1",
    "moment": "2.23.0",
    "next": "7.0.2",
    "next-cookies": "Sly777/next-cookies#master",
    "next-routes": "1.4.2",
    "offline-plugin": "5.0.6",
    "prop-types": "15.6.2",
    "react": "16.7.0",
    "react-apollo": "2.3.3",
    "react-dom": "16.7.0",
    "react-helmet": "5.2.0",
    "react-redux": "6.0.0",
    "redux": "4.0.1",
    "rimraf": "2.6.3",
    "styled-components": "4.1.3"
  },
  "devDependencies": {
    "@babel/plugin-transform-flow-strip-types": "7.2.3",
    "babel-eslint": "10.0.1",
    "cli-clear": "1.0.4",
    "eslint": "5.11.1",
    "eslint-config-airbnb": "17.1.0",
    "eslint-config-prettier": "3.3.0",
    "eslint-loader": "2.1.1",
    "eslint-plugin-flowtype": "3.2.0",
    "eslint-plugin-graphql": "3.0.1",
    "eslint-plugin-import": "2.14.0",
    "eslint-plugin-jsx-a11y": "6.1.2",
    "eslint-plugin-prettier": "3.0.1",
    "eslint-plugin-react": "7.12.2",
    "eslint-watch": "4.0.2",
    "figlet": "1.2.1",
    "flow-bin": "0.89.0",
    "graphql-cli": "3.0.4",
    "graphql-cli-voyager": "0.1.3",
    "handlebars": "4.0.12",
    "husky": "1.3.1",
    "inquirer": "6.2.1",
    "lint-staged": "8.1.0",
    "ngrok": "3.1.0",
    "pre-commit": "1.2.2",
    "prettier": "1.15.3",
    "replace-in-file": "3.4.2",
    "shelljs": "0.8.3",
    "webpack-bundle-analyzer": "3.0.3"
  },
  "collective": {
    "type": "opencollective",
    "url": "https://opencollective.com/ran"
  },
  "husky": {
    "hooks": {
      "pre-commit": "lint-staged"
    }
  }
}