-
Notifications
You must be signed in to change notification settings - Fork 52
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.4 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.4 KB
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
{
"name": "kaoto",
"version": "2.10.0-RC1",
"description": "Kaoto - The Integration Designer for Apache Camel",
"repository": "https://github.com/KaotoIO/kaoto",
"author": "The Kaoto Team",
"license": "Apache License v2.0",
"workspaces": [
"packages/*"
],
"resolutions": {
"@patternfly/patternfly": "6.4.0",
"@patternfly/react-code-editor": "6.4.0",
"@patternfly/react-core": "6.4.0",
"@patternfly/react-icons": "6.4.0",
"@patternfly/react-table": "6.4.0",
"@patternfly/react-topology": "6.4.0",
"react": "19.2.1",
"react-dom": "19.2.1",
"prettier": "3.7.4",
"typescript": "5.5.4"
},
"scripts": {
"prepare": "husky",
"husky:fix": "git config core.hooksPath .husky",
"version": "lerna version",
"publish": "lerna publish from-package"
},
"engines": {
"node": ">=22.x"
},
"devDependencies": {
"@lerna-lite/cli": "^4.11.3",
"@lerna-lite/publish": "^4.11.3",
"@lerna-lite/version": "^4.11.3",
"fast-xml-parser": "^5.0.9",
"husky": "^9.0.0",
"lint-staged": "^15.0.0"
},
"lint-staged": {
"packages/ui/src/**/*.{ts,tsx,js,jsx}": [
"yarn workspace @kaoto/kaoto lint:fix"
],
"packages/ui/src/**/*.{css,scss}": [
"yarn workspace @kaoto/kaoto lint:style:fix"
],
"packages/**/*.{ts,tsx,js,jsx,css,scss,md,json,yml,yaml}": [
"prettier --write"
]
},
"packageManager": "yarn@4.9.4"
}