silverstripe-blog/package.json

43 lines
1.3 KiB
JSON
Raw Permalink Normal View History

2016-06-02 06:00:28 +02:00
{
"name": "silverstripe-blog",
"description": "A fresh take on blogging in Silverstripe set out to tackle the issue of a cluttered Site Tree",
2016-06-02 06:00:28 +02:00
"scripts": {
"build": "yarn && yarn lint && rm -rf client/dist/* && NODE_ENV=production webpack --mode production --bail --progress",
2019-11-08 05:33:51 +01:00
"dev": "NODE_ENV=development webpack --progress",
"watch": "NODE_ENV=development webpack --watch --progress",
"css": "WEBPACK_CHILD=css npm run build",
2019-11-08 05:33:51 +01:00
"lint": "yarn lint-js && yarn lint-sass",
"lint-js": "eslint client/src",
"lint-js-fix": "eslint client/src --fix",
"lint-sass": "sass-lint client/src",
"test": "true"
2016-06-02 06:00:28 +02:00
},
"repository": {
"type": "git",
"url": "git+https://github.com/silverstripe/silverstripe-blog.git"
},
"keywords": [
"silverstripe",
"blog"
],
"author": "SilverStripe Ltd",
"license": "BSD-2-Clause",
2016-06-02 06:00:28 +02:00
"bugs": {
"url": "https://github.com/silverstripe/silverstripe-blog/issues"
},
"homepage": "https://github.com/silverstripe/silverstripe-blog#readme",
2019-11-08 05:33:51 +01:00
"dependencies": {},
2016-06-02 06:00:28 +02:00
"devDependencies": {
2023-07-12 01:04:37 +02:00
"@silverstripe/eslint-config": "^1.1.0",
2023-04-03 04:28:32 +02:00
"@silverstripe/webpack-config": "^2.0.0",
"webpack": "^5.74.0",
"webpack-cli": "^5.0.0"
},
"resolutions": {
"colors": "1.4.0"
},
"browserslist": [
"defaults"
]
2016-06-02 06:00:28 +02:00
}