2017-09-14 00:01:09 +02:00
|
|
|
{
|
|
|
|
"name": "silverstripe-comments",
|
|
|
|
"version": "1.0.0",
|
|
|
|
"description": "SilverStripe campaign admin interface",
|
|
|
|
"directories": {
|
|
|
|
"test": "tests"
|
|
|
|
},
|
|
|
|
"engines": {
|
2019-11-11 00:18:54 +01:00
|
|
|
"node": "^10.x"
|
2017-09-14 00:01:09 +02:00
|
|
|
},
|
|
|
|
"scripts": {
|
|
|
|
"build": "yarn && NODE_ENV=production webpack -p --bail --progress",
|
|
|
|
"watch": "yarn && NODE_ENV=development webpack --watch --progress",
|
|
|
|
"css": "yarn && WEBPACK_CHILD=css webpack -p --bail --progress",
|
2020-11-16 03:24:51 +01:00
|
|
|
"test": "true",
|
2017-09-14 00:01:09 +02:00
|
|
|
"coverage": "jest --coverage",
|
|
|
|
"lint": "eslint client/src && sass-lint -v client/src"
|
|
|
|
},
|
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "git://github.com/silverstripe/silverstripe-comments.git"
|
|
|
|
},
|
|
|
|
"keywords": [
|
|
|
|
"silverstripe",
|
|
|
|
"admin"
|
|
|
|
],
|
|
|
|
"author": "SilverStripe Ltd",
|
|
|
|
"license": "BSD-3-Clause",
|
|
|
|
"bugs": {
|
|
|
|
"url": "https://github.com/silverstripe/silverstripe-comments/issues"
|
|
|
|
},
|
|
|
|
"homepage": "https://github.com/silverstripe/silverstripe-comments",
|
2021-03-04 05:05:29 +01:00
|
|
|
"dependencies": {
|
|
|
|
"jquery": "^3.6.0",
|
|
|
|
"jquery-validation": "^1.19.3"
|
|
|
|
},
|
2017-09-14 00:01:09 +02:00
|
|
|
"devDependencies": {
|
2021-11-19 00:29:17 +01:00
|
|
|
"@silverstripe/eslint-config": "^0.0.6",
|
2021-03-04 05:05:29 +01:00
|
|
|
"@silverstripe/webpack-config": "^1.3",
|
2017-09-14 00:01:09 +02:00
|
|
|
"babel-jest": "^19.0.0",
|
|
|
|
"babel-preset-es2015": "^6.6.0",
|
|
|
|
"babel-preset-es2016": "^6.24.1",
|
|
|
|
"babel-preset-react": "^6.5.0",
|
2021-03-04 05:05:29 +01:00
|
|
|
"copy-webpack-plugin": "^4",
|
2017-09-14 00:01:09 +02:00
|
|
|
"jest-cli": "^19.0.2",
|
2021-03-04 05:05:29 +01:00
|
|
|
"node-dir": "^0.1.17",
|
2017-09-14 00:01:09 +02:00
|
|
|
"react-addons-test-utils": "^15.3.1",
|
|
|
|
"redux-logger": "^2.6.1",
|
|
|
|
"redux-mock-store": "^1.2.3",
|
2019-11-11 00:18:54 +01:00
|
|
|
"redux-thunk": "^2.2.0"
|
2017-09-14 00:01:09 +02:00
|
|
|
},
|
|
|
|
"babel": {
|
|
|
|
"presets": [
|
|
|
|
"react",
|
|
|
|
"es2015",
|
|
|
|
"es2016"
|
|
|
|
],
|
|
|
|
"plugins": [
|
|
|
|
"transform-object-rest-spread"
|
|
|
|
]
|
|
|
|
}
|
|
|
|
}
|