-
Notifications
You must be signed in to change notification settings - Fork 235
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 2.03 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 2.03 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
53
54
55
56
57
58
59
60
61
62
63
{
"name": "@kie-tools-core/workspaces-git-fs",
"version": "0.0.0",
"description": "",
"license": "Apache-2.0",
"keywords": [],
"homepage": "https://github.com/apache/incubator-kie-tools",
"repository": {
"type": "git",
"url": "https://github.com/apache/incubator-kie-tools.git"
},
"bugs": {
"url": "https://github.com/apache/incubator-kie-tools/issues"
},
"files": [
"dist",
"src"
],
"scripts": {
"build:dev": "rimraf dist && tsc -p tsconfig.json",
"build:prod": "pnpm lint && rimraf dist && tsc -p tsconfig.json && pnpm test",
"lint": "run-script-if --bool \"$(build-env linters.run)\" --then \"kie-tools--eslint ./src\"",
"test": "run-script-if --ignore-errors \"$(build-env tests.ignoreFailures)\" --bool \"$(build-env tests.run)\" --then \"jest --silent --verbose --passWithNoTests\""
},
"dependencies": {
"@kie-tools-core/envelope-bus": "workspace:*",
"@kie-tools-core/react-hooks": "workspace:*",
"@kie-tools-core/workspace": "workspace:*",
"@kie-tools/cors-proxy-api": "workspace:*",
"@kie-tools/emscripten-fs": "^0.0.2",
"@kie-tools/kie-sandbox-fs": "workspace:*",
"client-zip": "^2.3.1",
"isomorphic-git": "^1.30.1",
"minimatch": "^4.2.5",
"uuid": "^8.3.2"
},
"devDependencies": {
"@babel/core": "^7.16.0",
"@babel/preset-env": "^7.16.0",
"@babel/preset-react": "^7.16.0",
"@kie-tools/eslint": "workspace:*",
"@kie-tools/jest-base": "workspace:*",
"@kie-tools/root-env": "workspace:*",
"@kie-tools/tsconfig": "workspace:*",
"@testing-library/jest-dom": "^6.4.6",
"@testing-library/react": "^12.1.5",
"@types/jest": "^29.5.12",
"@types/jest-when": "^3.5.5",
"@types/minimatch": "^3.0.5",
"@types/react": "^17.0.6",
"@types/uuid": "^8.3.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-junit": "^16.0.0",
"jest-when": "^3.6.0",
"rimraf": "^3.0.2",
"ts-jest": "^29.1.5",
"typescript": "^5.9.3"
},
"peerDependencies": {
"react": ">=17.0.2 <19.0.0"
}
}