-
Notifications
You must be signed in to change notification settings - Fork 46
/
package.json
86 lines (86 loc) · 2.8 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
{
"name": "sources-ui",
"version": "1.1.0",
"private": false,
"insights": {
"appname": "sources"
},
"engines": {
"node": ">=15.0.0",
"npm": ">=7.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/RedHatInsights/sources-ui.git"
},
"license": "Apache-2.0",
"dependencies": {
"@data-driven-forms/pf4-component-mapper": "^3.21.10",
"@data-driven-forms/react-form-renderer": "^3.21.10",
"@patternfly/react-component-groups": "^5.3.0-prerelease.2",
"@patternfly/react-core": "^5.3.4",
"@patternfly/react-icons": "^5.3.2",
"@patternfly/react-table": "^5.3.4",
"@redhat-cloud-services/frontend-components": "^4.2.13",
"@redhat-cloud-services/frontend-components-notifications": "^4.0.4",
"@redhat-cloud-services/frontend-components-utilities": "^4.0.16",
"@sentry/minimal": "6.19.7",
"@unleash/proxy-client-react": "^4.0.3",
"awesome-debounce-promise": "^2.1.0",
"axios": "1.6.1",
"classnames": "^2.3.2",
"deep-object-diff": "^1.1.9",
"lodash": "^4.17.21",
"prop-types": "^15.8.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-intl": "^6.5.2",
"react-redux": "^8.1.3",
"react-router-dom": "^6.18.0",
"redux": "^4.2.1",
"redux-promise-middleware": "^6.1.3",
"redux-thunk": "^2.4.2",
"uuid": "^9.0.1"
},
"devDependencies": {
"@babel/core": "7.23.3",
"@babel/eslint-parser": "^7.23.3",
"@babel/preset-env": "7.23.3",
"@babel/preset-react": "^7.23.3",
"@babel/preset-typescript": "^7.23.3",
"@redhat-cloud-services/frontend-components-config": "^6.2.6",
"@redhat-cloud-services/tsc-transform-imports": "^1.0.16",
"@testing-library/dom": "^9.3.3",
"@testing-library/jest-dom": "^6.1.4",
"@testing-library/react": "^14.1.0",
"@testing-library/user-event": "^14.5.1",
"axios-mock-adapter": "^1.22.0",
"eslint": "^8.53.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-react": "^7.33.2",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.0.3",
"redux-logger": "^3.0.6",
"redux-mock-store": "^1.5.4",
"ts-patch": "^3.0.2",
"typescript": "^5.2.2",
"webpack-bundle-analyzer": "^4.9.1",
"whatwg-fetch": "^3.6.19"
},
"scripts": {
"test": "jest --coverage",
"lint": "npm-run-all lint:*",
"lint:js": "eslint config src",
"travis:verify": "npm-run-all lint test build",
"verify": "npm-run-all build lint test",
"extract:messages": "npx @formatjs/cli extract 'src/**/*.{js,jsx}' --out-file ./translations/messages.json",
"start": "HOT=true fec dev",
"build": "fec build",
"start:federated": "fec static",
"postinstall": "ts-patch install"
}
}