-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathpackage.json
65 lines (65 loc) · 1.78 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
{
"name": "@hawtio/online-oauth-app",
"version": "0.0.0",
"private": true,
"license": "Apache-2.0",
"scripts": {
"start": "webpack serve --hot --progress --config webpack.config.js",
"build": "webpack --config webpack.config.js",
"test": "jest --watchAll=false --passWithNoTests src/**/*.test.ts*",
"test:coverage": "yarn test --coverage"
},
"dependencies": {
"@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.66",
"@types/react-dom": "^18.2.23",
"mini-css-extract-plugin": "2.8.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"typescript": "^5.4.3",
"web-vitals": "^3.5.2"
},
"devDependencies": {
"connect-history-api-fallback": "^2.0.0",
"css-loader": "^6.10.0",
"dotenv-webpack": "^8.1.0",
"html-webpack-plugin": "^5.6.0",
"interpolate-html-plugin": "^4.0.0",
"jest": "^29.6.2",
"os-browserify": "^0.3.0",
"path-browserify": "^1.0.1",
"process": "^0.11.10",
"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.1",
"webpack": "^5.91.0",
"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"
}
}