2016-01-26 05:28:36 +01:00
|
|
|
{
|
|
|
|
"name": "silverstripe-cms",
|
2022-12-18 22:20:52 +01:00
|
|
|
"version": "5.0.0",
|
2016-01-26 05:28:36 +01:00
|
|
|
"description": "The SilverStripe CMS",
|
|
|
|
"directories": {
|
|
|
|
"test": "tests"
|
|
|
|
},
|
|
|
|
"engines": {
|
2022-12-18 22:20:52 +01:00
|
|
|
"node": "^18.x"
|
2016-01-26 05:28:36 +01:00
|
|
|
},
|
|
|
|
"scripts": {
|
2023-02-13 03:20:56 +01:00
|
|
|
"build": "yarn && yarn lint && yarn test && rm -rf client/dist/* && NODE_ENV=production webpack --mode production --bail --progress",
|
2017-09-05 04:38:38 +02:00
|
|
|
"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": {
|
2022-12-18 22:20:52 +01:00
|
|
|
"@apollo/client": "^3.7.1",
|
|
|
|
"@popperjs/core": "^2.11.6",
|
|
|
|
"bootstrap": "^4.6.2",
|
|
|
|
"classnames": "^2.3.2",
|
2017-09-05 04:38:38 +02:00
|
|
|
"deep-freeze-strict": "^1.1.1",
|
2022-12-18 22:20:52 +01:00
|
|
|
"graphql": "^16.6.0",
|
|
|
|
"graphql-tag": "^2.12.6",
|
|
|
|
"isomorphic-fetch": "^3.0.0",
|
2021-05-12 03:01:46 +02:00
|
|
|
"merge": "^2.1.1",
|
2022-12-18 22:20:52 +01:00
|
|
|
"prop-types": "^15.8.1",
|
|
|
|
"react": "^18.2.0",
|
|
|
|
"react-dom": "^18.2.0",
|
|
|
|
"react-redux": "^8.0.5",
|
|
|
|
"react-select": "^5.6.0",
|
|
|
|
"reactstrap": "^8.9.0",
|
|
|
|
"reactstrap-confirm": "^1.3.2",
|
|
|
|
"redux": "^4.2.0",
|
|
|
|
"redux-form": "^8.3.8"
|
2017-09-05 04:38:38 +02:00
|
|
|
},
|
2016-01-26 05:28:36 +01:00
|
|
|
"devDependencies": {
|
2023-04-03 04:30:30 +02:00
|
|
|
"@silverstripe/eslint-config": "^1.0.0",
|
|
|
|
"@silverstripe/webpack-config": "^2.0.0",
|
2023-04-28 00:48:47 +02:00
|
|
|
"@testing-library/react": "^14.0.0",
|
2022-12-18 22:20:52 +01:00
|
|
|
"babel-jest": "^29.3.0",
|
|
|
|
"copy-webpack-plugin": "^11.0.0",
|
|
|
|
"core-js": "^3.26.0",
|
|
|
|
"jest-cli": "^29.3.0",
|
2023-02-13 03:20:56 +01:00
|
|
|
"jest-environment-jsdom": "^29.3.1",
|
2022-12-18 22:20:52 +01:00
|
|
|
"webpack": "^5.74.0",
|
|
|
|
"webpack-cli": "^5.0.0"
|
2017-05-29 07:24:48 +02:00
|
|
|
},
|
2022-12-18 22:20:52 +01:00
|
|
|
"browserslist": [
|
|
|
|
"defaults"
|
|
|
|
],
|
2017-09-05 04:38:38 +02:00
|
|
|
"jest": {
|
2023-02-13 03:20:56 +01:00
|
|
|
"testEnvironment": "jsdom",
|
2017-09-05 04:38:38 +02:00
|
|
|
"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-12-18 22:20:52 +01:00
|
|
|
"colors": "1.4.0"
|
2016-01-26 05:28:36 +01:00
|
|
|
}
|
|
|
|
}
|