forked from jenkinsci/jenkins
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 2.18 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "jenkins-ui",
"version": "1.0.0",
"description": "Jenkins User Interface",
"license": "MIT",
"author": {
"name": "Tom Fennelly",
"email": "[email protected]",
"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.9",
"@babel/core": "7.26.0",
"@babel/preset-env": "7.26.0",
"@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.8",
"postcss-scss": "4.0.9",
"prettier": "3.3.3",
"sass": "1.80.5",
"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": "[email protected]"
}