{
  "name": "xpub",
  "version": "0.0.0",
  "private": true,
  "license": "MIT",
  "devDependencies": {
    "babel-eslint": "^8.0.2",
    "babel-preset-es2015": "^6.24.1",
    "cz-conventional-changelog": "^2.1.0",
    "eslint": "4.19.1",
    "eslint-config-pubsweet": "^0.0.6",
    "eslint-plugin-import": "^2.8.0",
    "eslint-plugin-jest": "^21.4.0",
    "eslint-plugin-jsx-a11y": "^6.0.2",
    "eslint-plugin-node": "^5.2.1",
    "eslint-plugin-prettier": "^2.3.1",
    "eslint-plugin-promise": "^3.6.0",
    "eslint-plugin-react": "^7.4.0",
    "eslint-plugin-standard": "^3.0.1",
    "husky": "^0.14.3",
    "lerna": "^2.5.1",
    "lint-staged": "^4.1.3",
    "prettier": "^1.8.2",
    "react-router-redux": "^5.0.0-alpha.9",
    "stylelint": "^8.2.0",
    "stylelint-config-pubsweet": "^0.0.3"
  },
  "repository": {
    "type": "git",
    "url": "git@gitlab.coko.foundation:xpub/xpub.git"
  },
  "scripts": {
    "clean": "lerna clean && rm -rf node_modules",
    "lint": "eslint packages",
    "precommit": "lint-staged",
    "styleguide": "cd packages/styleguide && yarn styleguide",
    "test": "lerna run test",
    "start": "docker-compose up"
  },
  "lint-staged": {
    "*.js": [
      "prettier --write",
      "git add"
    ],
    "*.css": "stylelint",
    "*.scss": "stylelint"
  },
  "engines": {
    "node": ">=8",
    "yarn": ">=1.2"
  },
  "workspaces": [
    "packages/*"
  ],
  "config": {
    "commitizen": {
      "path": "./node_modules/cz-conventional-changelog"
    }
  }
}