mirror of https://github.com/jenkinsci/jenkins.git
70 lines
2.2 KiB
JSON
70 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 --config .eslintrc.js ../ --ext js && prettier --check ../",
|
|
"lint:js-ci": "eslint --config .eslintrc.js ../ --ext js -f checkstyle -o target/eslint-warnings.xml && prettier --check ../",
|
|
"lint:css": "stylelint src/main/less",
|
|
"lint:css-ci": "stylelint src/main/less --custom-formatter stylelint-checkstyle-reporter -o target/stylelint-warnings.xml",
|
|
"lint:ci": "yarn lint:js-ci && yarn lint:css-ci",
|
|
"lint:fix": "prettier --write ../ && stylelint src/main/less --fix && eslint --config .eslintrc.js --fix ../",
|
|
"lint": "yarn lint:js && yarn lint:css"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/cli": "7.21.0",
|
|
"@babel/core": "7.21.3",
|
|
"autoprefixer": "10.4.14",
|
|
"clean-webpack-plugin": "4.0.0",
|
|
"copy-webpack-plugin": "11.0.0",
|
|
"css-loader": "6.7.3",
|
|
"css-minimizer-webpack-plugin": "4.2.2",
|
|
"eslint": "8.36.0",
|
|
"eslint-config-prettier": "8.8.0",
|
|
"handlebars": "4.7.7",
|
|
"handlebars-loader": "1.7.3",
|
|
"less": "4.1.3",
|
|
"less-loader": "11.1.0",
|
|
"mini-css-extract-plugin": "2.7.5",
|
|
"postcss": "8.4.21",
|
|
"postcss-loader": "7.1.0",
|
|
"prettier": "2.8.6",
|
|
"style-loader": "3.3.2",
|
|
"stylelint": "15.3.0",
|
|
"stylelint-config-standard": "31.0.0",
|
|
"webpack": "5.76.3",
|
|
"webpack-cli": "5.0.1",
|
|
"webpack-remove-empty-scripts": "1.0.1"
|
|
},
|
|
"dependencies": {
|
|
"@babel/preset-env": "7.20.2",
|
|
"babel-loader": "9.1.2",
|
|
"bootstrap": "3.4.1",
|
|
"hotkeys-js": "3.10.1",
|
|
"jenkins-js-modules": "1.5.4",
|
|
"jquery": "3.6.4",
|
|
"lodash": "4.17.21",
|
|
"postcss-less": "6.0.0",
|
|
"sortablejs": "1.15.0",
|
|
"stylelint-checkstyle-reporter": "0.2.0",
|
|
"tippy.js": "^6.3.7",
|
|
"window-handle": "1.0.1"
|
|
},
|
|
"browserslist": [
|
|
"defaults",
|
|
"not IE 11"
|
|
],
|
|
"packageManager": "yarn@3.5.0"
|
|
}
|