2016-01-26 05:28:36 +01:00
|
|
|
{
|
|
|
|
"name": "silverstripe-cms",
|
|
|
|
"version": "4.0.0",
|
|
|
|
"description": "The SilverStripe CMS",
|
|
|
|
"directories": {
|
|
|
|
"test": "tests"
|
|
|
|
},
|
|
|
|
"engines": {
|
2018-11-19 02:45:03 +01:00
|
|
|
"node": "^10.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": {
|
2019-08-16 05:25:21 +02:00
|
|
|
"@silverstripe/reactstrap-confirm": "0.0.5",
|
2018-11-19 02:45:03 +01:00
|
|
|
"apollo-client": "^2.4.2",
|
2019-03-13 23:35:34 +01:00
|
|
|
"bootstrap": "^4.3.1",
|
2017-09-05 04:38:38 +02:00
|
|
|
"classnames": "^2.2.5",
|
|
|
|
"deep-freeze-strict": "^1.1.1",
|
2018-11-19 02:45:03 +01:00
|
|
|
"graphql": "^14.0.0",
|
|
|
|
"graphql-tag": "^2.10.0",
|
|
|
|
"isomorphic-fetch": "^2.2.1",
|
2020-04-30 04:18:50 +02:00
|
|
|
"jquery": "^3.5.0",
|
2021-05-12 03:01:46 +02:00
|
|
|
"merge": "^2.1.1",
|
2018-11-19 02:45:03 +01:00
|
|
|
"popper.js": "^1.14.4",
|
2018-09-14 03:16:55 +02:00
|
|
|
"prop-types": "^15.6.2",
|
2018-11-19 02:45:03 +01:00
|
|
|
"react": "^16.6.1",
|
|
|
|
"react-apollo": "^2.1.11",
|
|
|
|
"react-dom": "^16.6.1",
|
|
|
|
"react-redux": "^5.0.7",
|
|
|
|
"react-select": "^1.3",
|
|
|
|
"reactstrap": "^6.4.0",
|
|
|
|
"redux": "^4.0.0",
|
|
|
|
"redux-form": "^7.4.2"
|
2017-09-05 04:38:38 +02:00
|
|
|
},
|
2016-01-26 05:28:36 +01:00
|
|
|
"devDependencies": {
|
2022-03-11 01:47:04 +01:00
|
|
|
"@silverstripe/eslint-config": "^0.1.0",
|
2019-11-05 04:50:41 +01:00
|
|
|
"@silverstripe/webpack-config": "^1.3.0",
|
2018-11-19 02:45:03 +01:00
|
|
|
"babel-jest": "^23.6.0",
|
|
|
|
"babel-polyfill": "^6.26.0",
|
2020-12-21 22:25:15 +01:00
|
|
|
"copy-webpack-plugin": "^4",
|
2019-11-05 04:50:41 +01:00
|
|
|
"jest-cli": "^23.6.0"
|
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": {
|
2022-01-26 23:18:47 +01:00
|
|
|
"colors": "1.1.2",
|
2017-09-05 04:38:38 +02:00
|
|
|
"eslint": "^4.6.1"
|
|
|
|
},
|
|
|
|
"babel": {
|
|
|
|
"presets": [
|
|
|
|
"env",
|
|
|
|
"react"
|
|
|
|
],
|
|
|
|
"plugins": [
|
|
|
|
"transform-object-rest-spread"
|
|
|
|
]
|
2016-01-26 05:28:36 +01:00
|
|
|
}
|
|
|
|
}
|