-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
61 lines (61 loc) · 2.16 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
{
"name": "@hawtio/online-console-plugin-root",
"version": "0.0.0",
"private": true,
"description": "OpenShift plugin version of hawtio",
"author": "Hawtio developer team",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/hawtio/hawtio-online-console-plugin.git"
},
"workspaces": [
"packages/*"
],
"scripts": {
"build": "yarn build:plugin && yarn build:gateway && yarn license",
"start:plugin": "yarn workspace @hawtio/online-console-plugin start:plugin",
"start:console": "yarn workspace @hawtio/online-console-plugin start:console",
"build:plugin": "yarn workspace @hawtio/online-console-plugin build",
"start:gateway": "yarn workspace @hawtio/online-plugin-gateway start",
"build:gateway": "yarn workspace @hawtio/online-plugin-gateway build",
"lint": "yarn eslint packages/",
"lint:fix": "yarn eslint packages/ --fix",
"format:check": "yarn prettier --check packages/",
"format:fix": "yarn prettier --write packages/",
"license": "mkdir -p docker/licenses && yarn licenses generate-disclaimer -R > docker/licenses/licenses.txt",
"test": "yarn workspaces foreach -v -Aipt --exclude @hawtio/online-root run test",
"test:watch": "yarn workspaces foreach -v -Aipt --exclude @hawtio/online-root run test:watch"
},
"devDependencies": {
"@eslint/compat": "^1.2.0",
"@eslint/js": "^9.12.0",
"concurrently": "^8.2.2",
"cz-conventional-changelog": "3.3.0",
"eslint": "^9.1.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-react-app": "^7.0.1",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-testing-library": "^6.3.0",
"prettier": "3.3.3",
"typescript-eslint": "^8.8.0"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog",
"maxLineWidth": 80
}
},
"packageManager": "[email protected]",
"engines": {
"yarn": ">=4.3.1",
"node": ">=20"
},
"resolutions": {
"eslint-config-react-app/eslint-plugin-react-hooks": "^4.6.2",
"@types/express-serve-static-core": "^4.17.21",
"@types/express": "^4.17.21",
"@types/react": "^17.0.37"
}
}