This repository has been archived by the owner on Jan 9, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
68 lines (68 loc) · 2.03 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
{
"name": "kogito-apps",
"version": "0.0.0",
"license": "Apache-2.0",
"private": true,
"scripts": {
"init": "pnpm bootstrap",
"bootstrap": "pnpm install --config.strict-peer-dependencies=false",
"build:prod": "pnpm --filter \"./packages/**\" build:prod",
"test": "pnpm run --filter \"./packages/**\" test:coverage",
"test:it": "pnpm run --filter \"./packages/**\" test:it",
"locktt": "locktt",
"test:e2e:trusty": "pnpm -r -F @kogito-apps/trusty test:e2e:trusty",
"format:all": "pnpm -r format --stream --",
"format:check": "prettier --check .",
"build:prod:swf": "pnpm -r -F @kogito-apps/runtime-tools-dev-ui-webapp... build:prod",
"test:swf": "pnpm --filter @kogito-apps/runtime-tools-dev-ui-webapp... test",
"prepare": "cd .. && husky install"
},
"devDependencies": {
"@kie-tools/dashbuilder-client": "^0.30.0",
"@kie/lock-treatment-tool": "^0.2.4",
"@types/node": "^18.16.19",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-cypress": "^2.13.3",
"eslint-plugin-prettier": "^3.4.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^8.0.3",
"lint-staged": "^10.5.4",
"pnpm": "8.7.0",
"prettier": "^2.8.8",
"pretty-quick": "^3.1.3"
},
"resolutions": {
"@patternfly/react-core": "^4.276.6",
"@types/express-serve-static-core": "^4.17.21",
"@types/minimatch": "^3.0.5",
"axios": "0.21.2",
"d3": "^7.0.0",
"d3-ease": "^3.0.1",
"d3-interpolate": "^3.0.1",
"fast-xml-parser": "^4.2.4",
"minimatch": "^3.0.5",
"@types/react": "17.0.5",
"ua-parser-js": "0.7.35",
"yaml": "2.3.1"
},
"engines": {
"node": ">=18",
"pnpm": "8.7.0"
},
"lint-staged": {
"packages/**/*.{ts,tsx}": [
"pnpm pretty-quick --staged",
"eslint --fix"
]
},
"kieTools": {
"requiredPreinstalledCliCommands": [
"pnpm",
"npm"
]
}
}