-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
95 lines (95 loc) · 3.32 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
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
{
"name": "content-sources-frontend",
"version": "0.0.2",
"private": false,
"engines": {
"node": "=18.12.1",
"npm": ">=8.0.0"
},
"scripts": {
"build": "fec build",
"deploy": "npm-run-all build lint test",
"lint": "eslint 'src/**/*.{js,jsx,ts,tsx}' --no-error-on-unmatched-pattern",
"lint:fix": "eslint --fix 'src/**/*.{js,jsx,ts,tsx}' --no-error-on-unmatched-pattern",
"format": "prettier --write 'src/**/*.{js,jsx,ts,tsx,css,md}' --config ./.prettierrc",
"patch:hosts": "fec patch-etc-hosts",
"start": "fec dev",
"start:stage": "fec dev --clouddotEnv=stage",
"start:prod": "fec dev --clouddotEnv=prod",
"start:verbose": "VERBOSE=true fec dev",
"local": "BACKEND_PORT=8000 npm start",
"verify": "npm-run-all build lint test-ci",
"postinstall": "ts-patch install",
"test": "TZ=UTC jest --config jest.config.js --verbose",
"test-ci": "TZ=UTC jest --config jest.ci.config.js --verbose --no-cache",
"testAllPreviewFailures": "npm-run-all -p test jestPreview",
"jestPreview": "jest-preview",
"jestClear": "jest --clearCache"
},
"dependencies": {
"@patternfly/react-core": "^5.4.7",
"@patternfly/react-icons": "^5.2.1",
"@patternfly/react-table": "^5.4.7",
"@redhat-cloud-services/frontend-components": "^4.2.22",
"@redhat-cloud-services/frontend-components-config": "^6.3.3",
"@redhat-cloud-services/frontend-components-notifications": "^4.1.1",
"@redhat-cloud-services/frontend-components-utilities": "^4.0.19",
"@unleash/proxy-client-react": "^4.4.0",
"axios": "^1.7.7",
"classnames": "^2.5.1",
"crypto-js": "^4.2.0",
"dayjs": "^1.11.13",
"formik": "^2.4.6",
"lodash": "^4.17.21",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-jss": "^10.10.0",
"react-query": "^3.39.3",
"react-redux": "^9.1.2",
"react-router-dom": "^6.28.0",
"react18-json-view": "^0.2.8",
"redux": "^5.0.1",
"yup": "^1.4.0"
},
"devDependencies": {
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.15.0",
"@redhat-cloud-services/tsc-transform-imports": "^1.0.19",
"@redhat-cloud-services/types": "^1.0.16",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.0.1",
"@testing-library/user-event": "^14.5.2",
"@types/jest": "^29.5.14",
"@types/lodash": "^4.17.13",
"@types/node": "^22.9.0",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@types/react-router-dom": "^5.3.3",
"@typescript-eslint/eslint-plugin": "^8.15.0",
"@typescript-eslint/parser": "^8.15.0",
"eslint": "^9.15.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-unused-imports": "^4.1.4",
"globals": "^15.12.0",
"htmlparser2": "^9.1.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-preview": "^0.2.3",
"npm-run-all": "^4.1.5",
"prettier": "^3.3.3",
"pretty-format": "^29.7.0",
"prop-types": "15.8.1",
"source-map": "^0.8.0-beta.0",
"ts-jest": "^29.2.5",
"ts-patch": "^3.2.1",
"typescript": "^5.6.3",
"webpack-bundle-analyzer": "^4.10.2"
},
"insights": {
"appname": "content-sources",
"buildrepo": "[email protected]:RedHatInsights/content-sources-frontend-build.git"
}
}