silverstripe-widgets/package.json

37 lines
1.1 KiB
JSON
Raw Normal View History

2023-01-20 02:47:29 +01:00
{
"name": "silverstripe-widgets",
"license": "BSD-3-Clause",
"repository": {
"type": "git",
"url": "git+https://github.com/silverstripe/silverstripe-widgets.git"
},
"homepage": "https://github.com/silverstripe/silverstripe-widgets",
"bugs": {
"url": "https://github.com/silverstripe/silverstripe-widgets/issues"
},
"author": "SilverStripe Ltd.",
"engines": {
"node": "^18.x"
},
"scripts": {
"build": "yarn && yarn lint && rm -rf client/dist/* && NODE_ENV=production webpack --mode production --bail --progress",
"dev": "NODE_ENV=development webpack --progress",
"watch": "NODE_ENV=development webpack --watch --progress",
"lint": "eslint client/src && sass-lint client/src",
"lint-fix": "eslint client/src --fix && sass-lint client/src --fix"
},
2023-04-03 04:40:59 +02:00
"dependencies": {},
2023-01-20 02:47:29 +01:00
"devDependencies": {
2023-04-03 04:40:59 +02:00
"@silverstripe/eslint-config": "^1.0.0",
"@silverstripe/webpack-config": "^2.0.0",
"webpack": "^5.76.0",
2023-01-20 02:47:29 +01:00
"webpack-cli": "^5.0.0"
},
"resolutions": {
"colors": "1.4.0"
},
"browserslist": [
"defaults"
]
}