-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathpackage.json
More file actions
151 lines (151 loc) · 5.91 KB
/
package.json
File metadata and controls
151 lines (151 loc) · 5.91 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
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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
{
"name": "cryostat-web",
"version": "4.2.0-dev",
"description": "Web-Client for Cryostat",
"repository": "https://github.com/cryostatio/cryostat-web.git",
"license": "Apache-2.0",
"private": true,
"scripts": {
"build": "concurrently -c 'auto' 'yarn:build:notests' 'yarn:test'",
"build:notests": "webpack --config webpack.prod.js",
"build:preview:notests": "PREVIEW=true webpack --config webpack.prod.js",
"clean": "rimraf dist",
"start:dev": "webpack serve --hot --color --progress --config webpack.dev.js",
"start:dev:preview": "PREVIEW=true PORT=9091 webpack serve --hot --color --progress --config webpack.dev.js",
"start:dev:lint": "ESLINT_ENABLE=true webpack serve --hot --color --progress --config webpack.dev.js",
"test": "jest --maxWorkers=50% --coverage=true",
"test:ci": "jest --maxWorkers=50%",
"eslint": "yarn eslint:check",
"eslint:check": "eslint './src/**/*.{ts,tsx,js}'",
"eslint:apply": "eslint --fix './src/**/*.{ts,tsx,js}'",
"itest:preview": "HEADLESS_BROWSER=true concurrently -c 'auto' 'yarn:start:dev:preview --no-open' 'yarn:itest' --kill-others --success first",
"itest": "wait-on -l --httpTimeout 120000 -d 5000 http://localhost:9091 && jest --testMatch='**/itest/**/*.test.(ts|tsx)'",
"license:check": "license-check-and-add check -f license-config.json",
"license:apply": "license-check-and-add add -f license-config.json",
"lint": "concurrently -c 'auto' 'yarn:format' 'yarn:eslint' 'yarn:type-check'",
"localize": "i18next \"src/**/*.{js,jsx,ts,tsx,json}\" -c ./i18next-parser.config.js",
"format": "yarn format:check",
"format:check": "concurrently -c 'auto' 'yarn:license:check' 'yarn:prettier:check'",
"format:apply": "concurrently -c 'auto' 'yarn:license:apply' 'yarn:prettier:apply'",
"prettier:check": "prettier --check './src/**/*.{tsx,ts}'",
"prettier:apply": "prettier --write './src/**/*.{tsx,ts}'",
"build:bundle-profile": "webpack --config webpack.prod.js --profile --json > stats.json",
"build:bundle-analyze": "webpack-bundle-analyzer ./stats.json dist",
"build:bundle-profile-analyze": "concurrently -c 'auto' 'yarn:build:bundle-*'",
"yarn:frzinstall": "yarn install --immutable",
"type-check": "tsc --noEmit"
},
"devDependencies": {
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^12.1.5",
"@testing-library/user-event": "^14.6.1",
"@types/humanize-duration": "^3.27.4",
"@types/jest": "^30.0.0",
"@types/js-base64": "3.3.1",
"@types/react-test-renderer": "^17.0.7",
"@types/selenium-webdriver": "^4.35.5",
"@typescript-eslint/eslint-plugin": "^8.53.1",
"@typescript-eslint/parser": "^8.53.1",
"concurrently": "^9.2.1",
"css-loader": "^7.1.2",
"css-minimizer-webpack-plugin": "^7.0.4",
"eslint": "^9.39.0",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-unused-imports": "^4.3.0",
"eslint-webpack-plugin": "^5.0.2",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.6.6",
"imagemin": "^9.0.1",
"jest": "^30.2.0",
"jest-environment-jsdom": "^30.2.0",
"license-check-and-add": "^4.0.5",
"mini-css-extract-plugin": "^2.10.0",
"miragejs": "^0.1.48",
"mock-socket": "^9.3.1",
"monaco-editor": "^0.55.1",
"monaco-editor-webpack-plugin": "^7.1.1",
"npm-run-all2": "^8.0.0",
"prettier": "^3.8.1",
"prop-types": "^15.7.2",
"raw-loader": "^4.0.2",
"react-test-renderer": "^17.0.2",
"regenerator-runtime": "^0.14.1",
"rimraf": "^6.1.2",
"selenium-webdriver": "^4.40.0",
"style-loader": "^4.0.0",
"svg-url-loader": "^8.0.0",
"terser-webpack-plugin": "^5.3.16",
"ts-jest": "^29.4.6",
"ts-loader": "^9.5.4",
"tsconfig-paths-webpack-plugin": "^4.2.0",
"tslib": "^2.8.1",
"typescript": "^5.9.3",
"url-loader": "^4.1.1",
"wait-on": "^9.0.3",
"webpack": "^5.105.4",
"webpack-bundle-analyzer": "^5.2.0",
"webpack-cli": "^6.0.1",
"webpack-dev-server": "^5.2.3",
"webpack-merge": "^6.0.1"
},
"dependencies": {
"@patternfly/quickstarts": "^6.0.0",
"@patternfly/react-catalog-view-extension": "^6.0.0",
"@patternfly/react-charts": "^8.0.0",
"@patternfly/react-code-editor": "^6.4.1",
"@patternfly/react-core": "^6.0.0",
"@patternfly/react-icons": "^6.0.0",
"@patternfly/react-styles": "^6.0.0",
"@patternfly/react-table": "^6.0.0",
"@patternfly/react-templates": "^6.4.1",
"@patternfly/react-topology": "^6.0.0",
"@reduxjs/toolkit": "^1.9.3",
"@types/lodash": "^4.17.23",
"@types/react": "^17.0.69",
"dayjs": "^1.11.19",
"echarts": "^5.6.0",
"humanize-duration": "^3.33.2",
"i18next": "^25.8.0",
"i18next-browser-languagedetector": "^8.2.0",
"i18next-parser": "^9.3.0",
"js-base64": "3.7.8",
"lodash": "^4.17.23",
"marked": "^15.0.6",
"nanoid": "^5.1.6",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-i18next": "^15.7.3",
"react-joyride": "^2.9.3",
"react-redux": "7.2.9",
"react-router-dom": "5.3.x",
"react-router-dom-v5-compat": "^6.11.2",
"rxjs": "^7.8.2",
"semver": "^7.7.3",
"showdown": "^2.1.0",
"victory-area": "^37.3.6",
"victory-axis": "^37.3.6",
"victory-bar": "^37.3.6",
"victory-box-plot": "^37.3.6",
"victory-chart": "^37.3.6",
"victory-core": "^37.3.6",
"victory-create-container": "^37.3.6",
"victory-cursor-container": "^37.3.6",
"victory-group": "^37.3.6",
"victory-legend": "^37.3.6",
"victory-line": "^37.3.6",
"victory-pie": "^37.3.6",
"victory-scatter": "^37.3.6",
"victory-stack": "^37.3.6",
"victory-tooltip": "^37.3.6",
"victory-voronoi-container": "^37.3.6",
"victory-zoom-container": "^37.3.6"
},
"resolutions": {
"@types/react": "^17.0.69",
"lodash": "^4.17.23"
},
"packageManager": "yarn@4.13.0"
}