-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 2.08 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 2.08 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
{
"name": "insights-runtimes-frontend",
"version": "1.2.0",
"private": false,
"engines": {
"node": ">=18.0.0",
"npm": ">=8.0.0"
},
"scripts": {
"build": "fec build",
"deploy": "npm-run-all build lint test",
"lint": "npm-run-all lint:*",
"lint:js": "eslint src",
"lint:js:fix": "eslint src --fix",
"mock-instances": "json-server --watch mock/instances.json --port 3000",
"patch:hosts": "fec patch-etc-hosts",
"prod": "NODE_ENV=production webpack serve --config config/dev.webpack.config.js",
"start": "fec dev",
"start:proxy": "PROXY=true fec dev",
"start:mock": "MOCK=true npm run start:proxy",
"test": "jest",
"postinstall": "ts-patch install && rimraf .cache",
"verify": "npm-run-all build lint test"
},
"dependencies": {
"@patternfly/react-core": "^6.2.2",
"@patternfly/react-icons": "^6.2.2",
"@patternfly/react-table": "^6.2.2",
"@redhat-cloud-services/frontend-components": "^7.0.3",
"@redhat-cloud-services/frontend-components-notifications": "^6.0.0",
"@redhat-cloud-services/frontend-components-utilities": "^7.0.3",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-router-dom": "^6.26.2"
},
"devDependencies": {
"@redhat-cloud-services/eslint-config-redhat-cloud-services": "^3.0.0",
"@redhat-cloud-services/frontend-components-config": "^6.6.9",
"@redhat-cloud-services/tsc-transform-imports": "^1.0.16",
"@testing-library/jest-dom": "^6.5.0",
"@testing-library/react": "^16.0.0",
"@types/jest": "^30.0.0",
"@types/react": "^18.3.11",
"@types/react-dom": "^18.3.0",
"@types/react-router-dom": "^5.3.3",
"@types/redux-logger": "^3.0.13",
"@typescript-eslint/parser": "^8.31.0",
"identity-obj-proxy": "^3.0.0",
"jest-environment-jsdom": "^30.0.0",
"json-server": "^1.0.0-beta.3",
"npm-run-all2": "^8.0.0",
"rimraf": "^6.0.0",
"ts-jest": "^29.2.5",
"ts-patch": "^3.2.1",
"typescript": "^5.6.2",
"typescript-eslint": "^8.31.0",
"webpack-bundle-analyzer": "4.10.2"
},
"insights": {
"appname": "runtimes"
}
}