-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathpackage.json
103 lines (103 loc) · 3.22 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "@hawtio/online-shell",
"version": "2.0.0",
"description": "The UI shell on hawtio-online for kubernetes",
"author": "Hawtio developer team",
"license": "Apache-2.0",
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "https://github.com/hawtio/hawtio-online.git"
},
"keywords": [
"hawtio",
"camel",
"console",
"jmx",
"react"
],
"scripts": {
"start": "webpack serve --hot --mode development --progress --config webpack.config.dev.js",
"build": "yarn build:webpack && yarn replace-version yarn",
"build:webpack": "webpack --mode production --progress --config webpack.config.prod.js --output-public-path='/online/'",
"replace-version": "replace __PACKAGE_VERSION_PLACEHOLDER__ $npm_package_version ./build -r",
"test": "jest --watchAll=false --passWithNoTests",
"test:coverage": "yarn test --coverage",
"analyze:webpack:dev": "webpack --mode development --progress --config webpack.config.dev.js --output-public-path='/online/'",
"analyze:webpack:prod": "webpack --mode production --progress --config webpack.config.dev.js --output-public-path='/online/'"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^6.5.1",
"@fortawesome/free-brands-svg-icons": "^6.5.1",
"@fortawesome/free-solid-svg-icons": "^6.5.1",
"@fortawesome/react-fontawesome": "^0.2.0",
"@hawtio/online-kubernetes-api": "workspace:*",
"@hawtio/online-management-api": "workspace:*",
"@hawtio/online-oauth": "workspace:*",
"@hawtio/react": "^1.2.0",
"@patternfly/react-core": "^4.278.1",
"@patternfly/react-styles": "^4.92.6",
"@patternfly/react-table": "^4.113.7",
"@patternfly/react-tokens": "^4.94.6",
"@types/node": "^18.19.28",
"@types/react": "^18.2.73",
"@types/react-dom": "^18.2.23",
"jquery-match-height": "^0.7.2",
"jsonpath": "^1.1.1",
"moment": "^2.30.1",
"openshift-logos-icon": "^1.7.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-markdown": "^9.0.1",
"typescript": "^5.4.3",
"web-vitals": "^3.5.2"
},
"devDependencies": {
"babel-loader": "^9.1.3",
"connect-history-api-fallback": "^2.0.0",
"copy-webpack-plugin": "^12.0.2",
"css-loader": "^6.10.0",
"dotenv-webpack": "^8.1.0",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.6.0",
"interpolate-html-plugin": "^4.0.0",
"jest": "^29.6.2",
"mini-css-extract-plugin": "^2.8.1",
"os-browserify": "^0.3.0",
"path-browserify": "^1.0.1",
"process": "^0.11.10",
"replace": "^1.2.2",
"source-map-loader": "^5.0.0",
"style-loader": "^3.3.4",
"ts-loader": "^9.5.1",
"tsconfig-paths-webpack-plugin": "^4.1.0",
"url": "^0.11.3",
"webpack": "^5.91.0",
"webpack-bundle-analyzer": "^4.10.1",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.0.4",
"webpack-merge": "^5.9.0"
},
"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]",
"engines": {
"yarn": ">=4.1.0",
"node": ">=18"
},
"publishConfig": {
"access": "public"
}
}