2016-01-26 05:28:36 +01:00
|
|
|
{
|
|
|
|
"name": "silverstripe-cms",
|
|
|
|
"version": "4.0.0",
|
|
|
|
"description": "The SilverStripe CMS",
|
|
|
|
"directories": {
|
|
|
|
"test": "tests"
|
|
|
|
},
|
|
|
|
"engines": {
|
2017-03-06 02:43:09 +01:00
|
|
|
"node": "^6.x"
|
2016-01-26 05:28:36 +01:00
|
|
|
},
|
|
|
|
"scripts": {
|
2017-09-05 04:38:38 +02:00
|
|
|
"build": "yarn && yarn test && NODE_ENV=production webpack -p --bail --progress",
|
|
|
|
"dev": "NODE_ENV=development webpack --progress",
|
2017-05-29 07:24:48 +02:00
|
|
|
"watch": "NODE_ENV=development webpack --watch --progress",
|
|
|
|
"css": "WEBPACK_CHILD=css npm run build",
|
2017-09-05 04:38:38 +02:00
|
|
|
"test": "jest",
|
|
|
|
"coverage": "jest --coverage",
|
2017-02-27 22:35:13 +01:00
|
|
|
"lint": "eslint client/src && sass-lint -v"
|
2016-01-26 05:28:36 +01:00
|
|
|
},
|
|
|
|
"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",
|
2017-09-05 04:38:38 +02:00
|
|
|
"dependencies": {
|
|
|
|
"babel-loader": "^7.0.0",
|
|
|
|
"babel-polyfill": "^6.26.0",
|
2018-02-28 02:03:01 +01:00
|
|
|
"bootstrap": "4.0.0",
|
2017-09-05 04:38:38 +02:00
|
|
|
"classnames": "^2.2.5",
|
|
|
|
"deep-freeze-strict": "^1.1.1",
|
2018-03-12 23:17:03 +01:00
|
|
|
"graphql-tag": "^0.1.17",
|
2017-09-05 04:38:38 +02:00
|
|
|
"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",
|
2018-03-12 23:17:03 +01:00
|
|
|
"react-apollo": "^0.7.0",
|
2017-09-05 04:38:38 +02:00
|
|
|
"react-dom": "15.3.1",
|
|
|
|
"react-redux": "^4.4.1",
|
|
|
|
"react-select": "^1.0.0-rc.5",
|
2018-02-28 02:03:01 +01:00
|
|
|
"reactstrap": "5.0.0-beta",
|
2017-09-05 04:38:38 +02:00
|
|
|
"redux": "^3.3.1",
|
|
|
|
"redux-form": "^6.0.2"
|
|
|
|
},
|
2016-01-26 05:28:36 +01:00
|
|
|
"devDependencies": {
|
2017-11-29 01:48:20 +01:00
|
|
|
"@silverstripe/eslint-config": "^0.0.2",
|
|
|
|
"@silverstripe/webpack-config": "^0.5.0",
|
2017-09-05 04:38:38 +02:00
|
|
|
"babel-jest": "^20.0.3",
|
|
|
|
"jest-cli": "^19.0.2"
|
2017-05-29 07:24:48 +02:00
|
|
|
},
|
2017-09-05 04:38:38 +02:00
|
|
|
"jest": {
|
|
|
|
"roots": [
|
|
|
|
"client/src"
|
|
|
|
],
|
|
|
|
"moduleDirectories": [
|
|
|
|
"client/src",
|
|
|
|
"node_modules",
|
2017-10-03 07:15:41 +02:00
|
|
|
"../admin/client/src",
|
|
|
|
"../admin",
|
|
|
|
"vendor/silverstripe/admin/client/src",
|
|
|
|
"vendor/silverstripe/admin",
|
2017-09-05 04:38:38 +02:00
|
|
|
"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"
|
|
|
|
]
|
2016-01-26 05:28:36 +01:00
|
|
|
}
|
|
|
|
}
|