-
Notifications
You must be signed in to change notification settings - Fork 46
/
package.json
58 lines (58 loc) · 1.83 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
{
"name": "frontend-starter-app",
"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",
"patch:hosts": "fec patch-etc-hosts",
"start": "HOT=true fec dev",
"test": "jest",
"postinstall": "ts-patch install && rimraf .cache",
"verify": "npm-run-all build lint test"
},
"dependencies": {
"@patternfly/react-core": "^5.4.1",
"@patternfly/react-table": "^5.4.1",
"@redhat-cloud-services/frontend-components": "^4.2.16",
"@redhat-cloud-services/frontend-components-notifications": "^4.1.0",
"@redhat-cloud-services/frontend-components-utilities": "^4.0.17",
"jotai": "^2.10.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-router-dom": "^6.26.2"
},
"devDependencies": {
"@redhat-cloud-services/eslint-config-redhat-cloud-services": "^2.0.4",
"@redhat-cloud-services/frontend-components-config": "^6.3.0",
"@redhat-cloud-services/tsc-transform-imports": "^1.0.16",
"@testing-library/jest-dom": "^6.5.0",
"@testing-library/react": "^14.3.1",
"@types/jest": "^29.5.13",
"@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/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"eslint": "^8.57.1",
"identity-obj-proxy": "^3.0.0",
"jest-environment-jsdom": "^29.7.0",
"npm-run-all": "^4.1.5",
"rimraf": "^5.0.10",
"ts-jest": "^29.2.5",
"ts-patch": "^3.2.1",
"typescript": "^5.6.2",
"webpack-bundle-analyzer": "4.10.2"
},
"insights": {
"appname": "frontend-starter-app"
}
}