2017-09-14 00:01:09 +02:00
|
|
|
{
|
|
|
|
"name": "silverstripe-comments",
|
|
|
|
"description": "SilverStripe campaign admin interface",
|
|
|
|
"engines": {
|
2023-01-20 03:42:08 +01:00
|
|
|
"node": "^18.x"
|
2017-09-14 00:01:09 +02:00
|
|
|
},
|
|
|
|
"scripts": {
|
2023-01-20 03:42:08 +01:00
|
|
|
"build": "yarn && yarn lint && rm -rf client/dist/* && NODE_ENV=production webpack --mode production --bail --progress",
|
|
|
|
"dev": "NODE_ENV=development webpack --progress",
|
2017-09-14 00:01:09 +02:00
|
|
|
"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",
|
2023-01-20 03:42:08 +01:00
|
|
|
"lint": "eslint client/src && sass-lint -v client/src",
|
|
|
|
"lint-fix": "eslint client/src --fix && sass-lint -v client/src --fix"
|
2017-09-14 00:01:09 +02:00
|
|
|
},
|
|
|
|
"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": {
|
2023-01-20 03:42:08 +01:00
|
|
|
"jquery": "^3.6.1",
|
|
|
|
"jquery-validation": "^1.19.5"
|
2021-03-04 05:05:29 +01:00
|
|
|
},
|
2017-09-14 00:01:09 +02:00
|
|
|
"devDependencies": {
|
2023-04-03 04:31:01 +02:00
|
|
|
"@silverstripe/eslint-config": "^1.0.0",
|
|
|
|
"@silverstripe/webpack-config": "^2.0.0",
|
2023-01-20 03:42:08 +01:00
|
|
|
"copy-webpack-plugin": "^11.0.0",
|
2023-08-31 04:44:21 +02:00
|
|
|
"webpack": "^5.76.0",
|
2023-01-20 03:42:08 +01:00
|
|
|
"webpack-cli": "^5.0.0"
|
|
|
|
},
|
|
|
|
"resolutions": {
|
|
|
|
"colors": "1.4.0"
|
2017-09-14 00:01:09 +02:00
|
|
|
},
|
2023-01-20 03:42:08 +01:00
|
|
|
"browserslist": [
|
|
|
|
"defaults",
|
|
|
|
"ie 11"
|
|
|
|
]
|
2017-09-14 00:01:09 +02:00
|
|
|
}
|