-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathpackage.json
63 lines (63 loc) · 2.35 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
{
"name": "@hawtio/next-root",
"version": "0.0.0",
"private": true,
"author": "Hawtio developer team",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/hawtio/hawtio-next.git"
},
"workspaces": [
"packages/*",
"app"
],
"scripts": {
"start": "concurrently -n hawtio,app \"yarn build:hawtio:watch\" \"yarn start:app\"",
"start:app": "yarn build:backend-middleware && yarn workspace app start",
"build": "yarn build:hawtio",
"build:all": "yarn workspaces foreach -v -Aipt --exclude @hawtio/next-root run build",
"build:app": "yarn workspace app build",
"build:hawtio": "yarn workspace @hawtio/react build",
"build:hawtio:watch": "yarn workspace @hawtio/react build:watch",
"build:backend-middleware": "yarn workspace @hawtio/backend-middleware build",
"test": "yarn test:hawtio",
"test:all": "yarn workspaces foreach -v -Aipt --exclude @hawtio/next-root run test",
"test:hawtio": "yarn workspace @hawtio/react test",
"test:hawtio:watch": "yarn workspace @hawtio/react test:watch",
"test:backend-middleware": "yarn workspace @hawtio/backend-middleware test",
"lint": "yarn eslint packages/hawtio/src/ packages/hawtio/scripts/ app/src/",
"lint:fix": "yarn lint --fix",
"format:check": "yarn prettier --check .",
"format:fix": "yarn prettier --write .",
"release:hawtio": "yarn workspace @hawtio/react release",
"release:backend-middleware": "yarn workspace @hawtio/backend-middleware release",
"publish:hawtio": "yarn workspace @hawtio/react npm publish --tolerate-republish",
"publish:backend-middleware": "yarn workspace @hawtio/backend-middleware npm publish --tolerate-republish"
},
"devDependencies": {
"@eslint/compat": "^1.2.5",
"@eslint/js": "^9.18.0",
"concurrently": "^9.1.2",
"cz-conventional-changelog": "3.3.0",
"eslint": "^9.1.0",
"eslint-config-prettier": "^10.0.1",
"eslint-config-react-app": "^7.0.1",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-react-hooks": "^5.1.0",
"eslint-plugin-testing-library": "^7.1.1",
"prettier": "3.4.2",
"typescript": "^5.4.5",
"typescript-eslint": "^8.21.0"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog",
"maxLineWidth": 80
}
},
"packageManager": "[email protected]",
"engines": {
"yarn": ">=4"
}
}