forked from hawtio/hawtio-sample-war-plugin-ts
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
71 lines (71 loc) · 1.98 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
69
70
71
{
"name": "artemis-plugin",
"version": "1.0.0",
"description": "Artemis plugin",
"main": "./src/main/webapp/app/artemis-plugin.js",
"license": "Apache-2.0",
"private": true,
"scripts": {
"start": "craco start",
"build": "craco build && yarn replace-version",
"test": "craco test",
"replace-version": "replace __PACKAGE_VERSION_PLACEHOLDER__ $npm_package_version ./build/static/js -r --include=\"*.js\""
},
"dependencies": {
"@hawtio/react": "^1.1.2",
"@patternfly/react-charts": "~6.94.21",
"@patternfly/react-core": "~4.278.1",
"@patternfly/react-table": "~4.113.7",
"@patternfly/react-topology": "~4.93.5",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.2.0",
"react-scripts": "^5.0.1"
},
"devDependencies": {
"@craco/craco": "^7.1.0",
"@hawtio/backend-middleware": "^1.0.4",
"craco-esbuild": "^0.5.2",
"os-browserify": "^0.3.0",
"path-browserify": "^1.0.1",
"replace": "^1.2.2"
},
"resolutions": {
"@typescript-eslint/eslint-plugin": "6.9.0",
"@typescript-eslint/parser": "6.9.0",
"fork-ts-checker-webpack-plugin": "6.5.3",
"victory-area": "36.8.6",
"victory-bar": "36.8.6",
"victory-brush-container": "36.8.6",
"victory-core": "36.8.6",
"victory-cursor-container": "36.8.6",
"victory-create-container": "36.8.6",
"victory-legend": "36.8.6",
"victory-line": "36.8.6",
"victory-pie": "36.8.6",
"victory-scatter": "36.8.6",
"victory-selection-container": "36.8.6",
"victory-shared-events": "36.8.6",
"victory-voronoi-container": "36.8.6",
"victory-zoom-container": "36.8.6"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"packageManager": "[email protected]"
}