{
  "name": "silverstripe-cms",
  "version": "4.0.0",
  "description": "The SilverStripe CMS",
  "directories": {
    "test": "tests"
  },
  "engines": {
    "node": "^6.x"
  },
  "scripts": {
    "build": "yarn && yarn test && NODE_ENV=production webpack -p --bail --progress",
    "dev": "NODE_ENV=development webpack --progress",
    "watch": "NODE_ENV=development webpack --watch --progress",
    "css": "WEBPACK_CHILD=css npm run build",
    "test": "jest",
    "coverage": "jest --coverage",
    "lint": "eslint client/src && sass-lint -v"
  },
  "repository": {
    "type": "git",
    "url": "git://github.com/silverstripe/silverstripe-cms.git"
  },
  "keywords": [
    "silverstripe",
    "cms"
  ],
  "author": "SilverStripe Ltd",
  "license": "BSD-3-Clause",
  "bugs": {
    "url": "https://github.com/silverstripe/silverstripe-cms/issues"
  },
  "homepage": "https://github.com/silverstripe/silverstripe-cms#readme",
  "dependencies": {
    "babel-loader": "^7.0.0",
    "babel-polyfill": "^6.26.0",
    "classnames": "^2.2.5",
    "deep-freeze-strict": "^1.1.1",
    "isomorphic-fetch": "https://registry.npmjs.org/isomorphic-fetch/-/isomorphic-fetch-2.2.1.tgz",
    "jquery": "^3.2.1",
    "react": "15.3.1",
    "react-addons-test-utils": "15.3.1",
    "react-bootstrap-ss": "^0.30.10",
    "react-dom": "15.3.1",
    "react-redux": "^4.4.1",
    "react-select": "^1.0.0-rc.5",
    "redux": "^3.3.1",
    "redux-form": "^6.0.2"
  },
  "devDependencies": {
    "@silverstripe/eslint-config": "^0.0.2",
    "@silverstripe/webpack-config": "^0.5.0",
    "babel-jest": "^20.0.3",
    "jest-cli": "^19.0.2"
  },
  "jest": {
    "roots": [
      "client/src"
    ],
    "moduleDirectories": [
      "client/src",
      "node_modules",
      "../admin/client/src",
      "../admin",
      "vendor/silverstripe/admin/client/src",
      "vendor/silverstripe/admin",
      "node_modules/@silverstripe/webpack-config/node_modules"
    ],
    "testMatch": [
      "**/tests/**/*-test.js?(x)"
    ],
    "transform": {
      ".*": "babel-jest"
    }
  },
  "resolutions": {
    "eslint": "^4.6.1"
  },
  "babel": {
    "presets": [
      "env",
      "react"
    ],
    "plugins": [
      "transform-object-rest-spread"
    ]
  }
}