forked from RedHatInsights/frontend-starter-app
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.73 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.73 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
{
"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": "^6.2.2",
"@patternfly/react-table": "^6.2.2",
"@redhat-cloud-services/frontend-components": "^6.0.7",
"@redhat-cloud-services/frontend-components-notifications": "^6.0.0",
"@redhat-cloud-services/frontend-components-utilities": "^6.0.5",
"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.4.4",
"@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",
"@typescript-eslint/parser": "^8.31.0",
"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",
"typescript-eslint": "^8.31.0",
"webpack-bundle-analyzer": "4.10.2"
},
"insights": {
"appname": "frontend-starter-app"
}
}