-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy pathpackage.json
105 lines (105 loc) · 3.59 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
104
105
{
"name": "infinispan-console",
"version": "15.2",
"description": "The console for Infinispan/Red Hat Data Grid",
"main": "index.js",
"repository": "https://github.com/infinispan/infinispan-console.git",
"homepage": "http://localhost:11222/console/",
"license": "Apache-2.0",
"scripts": {
"prebuild": "npm run clean",
"dr:surge": "node dr-surge.js",
"build": "webpack --config webpack.prod.js && npm run dr:surge",
"start": "sirv dist --cors --single --host --port 8080",
"start:dev": "webpack serve --hot --color --progress --config webpack.dev.js",
"test": "jest",
"eslint": "eslint --ext .tsx,.js ./src/",
"lint": "npm run eslint",
"format": "prettier --check --write ./src --config ./.prettierrc",
"build:bundle-profile": "webpack --config webpack.prod.js --profile --json > stats.json",
"bundle-profile:analyze": "npm run build:bundle-profile && webpack-bundle-analyzer ./stats.json",
"clean": "rimraf dist",
"cy:run": "cypress run --headless",
"cy:e2e": "cypress open"
},
"prettier": {
"parser": "typescript",
"singleQuote": true
},
"devDependencies": {
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.2.0",
"@testing-library/user-event": "^14.6.0",
"@types/jest": "^29.5.14",
"@types/react": "^18",
"@typescript-eslint/eslint-plugin": "^8.20.0",
"@typescript-eslint/parser": "^8.20.0",
"@webpack-cli/serve": "^3.0.1",
"ajv": "^8.17.1",
"copy-webpack-plugin": "^12.0.2",
"css-loader": "^7.1.2",
"css-minimizer-webpack-plugin": "^7.0.0",
"cypress": "^13.17.0",
"dotenv-webpack": "^8.1.0",
"eslint": "^9.18.0",
"eslint-plugin-i18n-json": "^4.0.1",
"eslint-plugin-jest-dom": "^5.5.0",
"eslint-plugin-react": "^7.37.4",
"eslint-plugin-react-hooks": "^5.1.0",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.6.3",
"imagemin": "^9.0.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"license-reporter": "1.5.0",
"mini-css-extract-plugin": "^2.9.2",
"monaco-editor-webpack-plugin": "^7.1.0",
"postcss": "^8.5.1",
"prettier": "^3.4.2",
"prop-types": "^15.8.1",
"raw-loader": "^4.0.2",
"react-axe": "^3.5.4",
"react-router-dom": "^7.1.1",
"react-test-renderer": "^18",
"regenerator-runtime": "^0.14.1",
"rimraf": "^6.0.1",
"start-server-and-test": "^2.0.10",
"style-loader": "^4.0.0",
"svg-url-loader": "^8.0.0",
"terser-webpack-plugin": "^5.3.11",
"ts-jest": "^29.2.5",
"ts-loader": "^9.5.2",
"tsconfig-paths-webpack-plugin": "^4.2.0",
"tslib": "^2.8.1",
"typescript": "^5.7.3",
"url-loader": "^4.1.1",
"webpack": "^5.97.1",
"webpack-bundle-analyzer": "^4.10.2",
"webpack-cli": "^6.0.1",
"webpack-dev-server": "^5.2.0",
"webpack-merge": "^6.0.1"
},
"dependencies": {
"@patternfly/react-charts": "^8.1.0",
"@patternfly/react-code-editor": "^6.1.0",
"@patternfly/react-component-groups": "^6.1.0",
"@patternfly/react-core": "^6.1.0",
"@patternfly/react-icons": "^6.1.0",
"@patternfly/react-log-viewer": "^6.1.0",
"@patternfly/react-styles": "^6.1.0",
"@patternfly/react-table": "^6.1.0",
"@patternfly/react-tokens": "^6.1.0",
"i18next": "^24.2.1",
"i18next-browser-languagedetector": "^8.0.2",
"i18next-http-backend": "^3.0.1",
"jest-fixed-jsdom": "^0.0.9",
"keycloak-js": "^26",
"numeral": "^2.0.6",
"react": "^18",
"react-dom": "^18",
"react-i18next": "^15.4.0",
"react-syntax-highlighter": "^15.6.1",
"victory": "^37.3.6"
}
}