-
Notifications
You must be signed in to change notification settings - Fork 57
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 2.17 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 2.17 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
{
"name": "frontend-starter-app",
"version": "1.2.0",
"private": false,
"engines": {
"node": ">=18.20.8",
"npm": ">=8.19.4"
},
"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",
"static": "fec static",
"test": "jest",
"test:cypress": "cypress run --component",
"test:cypress:open": "cypress open --component",
"test:cypress:component": "cypress run --component",
"postinstall": "ts-patch install && rimraf .cache",
"verify": "npm-run-all build lint test"
},
"dependencies": {
"@patternfly/react-core": "^6.4.1",
"@patternfly/react-data-view": "^6.4.0",
"@patternfly/react-table": "^6.4.1",
"@redhat-cloud-services/frontend-components": "^7.0.44",
"@redhat-cloud-services/frontend-components-notifications": "^6.2.0",
"@redhat-cloud-services/frontend-components-utilities": "^7.0.39",
"@scalprum/core": "^0.9.0",
"@scalprum/react-core": "^0.11.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-router-dom": "^6.30.3"
},
"devDependencies": {
"@cypress/code-coverage": "^3.14.7",
"@cypress/react": "^9.0.1",
"@redhat-cloud-services/eslint-config-redhat-cloud-services": "^3.0.31",
"@redhat-cloud-services/frontend-components-config": "^6.7.54",
"@redhat-cloud-services/tsc-transform-imports": "^1.0.56",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^14.3.1",
"@types/jest": "^29.5.14",
"@types/react": "^18.3.28",
"@types/react-dom": "^18.3.7",
"@types/react-router-dom": "^5.3.3",
"@typescript-eslint/parser": "^8.57.0",
"cypress": "^15.11.0",
"identity-obj-proxy": "^3.0.0",
"jest-environment-jsdom": "^29.7.0",
"npm-run-all2": "^5.0.2",
"rimraf": "^5.0.10",
"ts-jest": "^29.4.6",
"ts-patch": "^3.3.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.57.0",
"webpack-bundle-analyzer": "4.10.2",
"@playwright/test": "^1.58.2"
},
"insights": {
"appname": "frontend-starter-app"
}
}