jenkins/package.json
renovate[bot] ebfa9c2558
Update dependency eslint to v9.13.0 (#9898)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-10-21 19:17:43 -07:00

73 lines
2.2 KiB
JSON

{
"name": "jenkins-ui",
"version": "1.0.0",
"description": "Jenkins User Interface",
"license": "MIT",
"author": {
"name": "Tom Fennelly",
"email": "tom.fennelly@gmail.com",
"url": "https://github.com/tfennelly"
},
"private": true,
"scripts": {
"dev": "webpack --config webpack.config.js",
"prod": "webpack --config webpack.config.js --mode=production",
"build": "yarn prod",
"start": "yarn dev --watch",
"lint:js": "eslint . && prettier --check .",
"lint:js-ci": "eslint . -f checkstyle -o target/eslint-warnings.xml && prettier --check .",
"lint:css": "stylelint src/main/scss",
"lint:css-ci": "stylelint src/main/scss --custom-formatter stylelint-checkstyle-reporter -o target/stylelint-warnings.xml",
"lint:ci": "yarn lint:js-ci && yarn lint:css-ci",
"lint:fix": "eslint --fix . && prettier --write . && stylelint src/main/scss --fix",
"lint": "yarn lint:js && yarn lint:css"
},
"devDependencies": {
"@babel/cli": "7.25.7",
"@babel/core": "7.25.8",
"@babel/preset-env": "7.25.8",
"@eslint/js": "9.13.0",
"babel-loader": "9.2.1",
"clean-webpack-plugin": "4.0.0",
"css-loader": "7.1.2",
"css-minimizer-webpack-plugin": "7.0.0",
"eslint": "9.13.0",
"eslint-config-prettier": "9.1.0",
"eslint-formatter-checkstyle": "8.40.0",
"globals": "15.11.0",
"handlebars-loader": "1.7.3",
"mini-css-extract-plugin": "2.9.1",
"postcss": "8.4.47",
"postcss-loader": "8.1.1",
"postcss-preset-env": "10.0.7",
"postcss-scss": "4.0.9",
"prettier": "3.3.3",
"sass": "1.80.3",
"sass-loader": "16.0.2",
"style-loader": "4.0.0",
"stylelint": "16.10.0",
"stylelint-checkstyle-reporter": "1.0.0",
"stylelint-config-standard": "36.0.1",
"webpack": "5.95.0",
"webpack-cli": "5.1.4",
"webpack-remove-empty-scripts": "1.0.4"
},
"dependencies": {
"handlebars": "4.7.8",
"hotkeys-js": "3.12.2",
"jquery": "3.7.1",
"lodash": "4.17.21",
"sortablejs": "1.15.3",
"tippy.js": "6.3.7",
"window-handle": "1.0.1"
},
"browserslist": [
"defaults",
"not IE 11"
],
"engines": {
"node": ">=20.0.0"
},
"packageManager": "yarn@4.5.1"
}