-
Notifications
You must be signed in to change notification settings - Fork 28
Expand file tree
/
Copy pathpackage.json
More file actions
102 lines (102 loc) · 2.72 KB
/
package.json
File metadata and controls
102 lines (102 loc) · 2.72 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
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
96
97
98
99
100
101
102
{
"name": "windup-web-ui-pf4",
"version": "0.1.0",
"private": true,
"proxy": "http://localhost:8080",
"homepage": "./",
"dependencies": {
"@babel/core": "^7.20.2",
"@babel/plugin-syntax-flow": "^7.18.6",
"@babel/plugin-transform-react-jsx": "^7.19.0",
"@patternfly/patternfly": "4.183.1",
"@patternfly/react-core": "4.198.19",
"@patternfly/react-table": "4.113.4",
"@react-keycloak/web": "3.4.0",
"@redhat-cloud-services/frontend-components-notifications": "2.2.2",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^12.1.5",
"@testing-library/react-hooks": "^8.0.1",
"@types/enzyme": "^3.10.12",
"@types/enzyme-adapter-react-16": "^1.0.6",
"@types/file-saver": "^2.0.5",
"@types/jest": "^29.2.3",
"@types/node": "^16.7.13",
"@types/react-dom": "16.9.8",
"@types/react-redux": "^7.1.24",
"@types/react-router-dom": "^5.3.3",
"@types/react-syntax-highlighter": "^15.5.5",
"@types/redux-logger": "^3.0.9",
"@types/websocket": "^1.0.5",
"@types/yup": "0.29.6",
"antd": "4.7.0",
"axios": "0.21.4",
"axios-mock-adapter": "^1.21.2",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.7",
"file-saver": "2.0.5",
"formik": "^2.2.9",
"humanize-duration-ts": "^2.1.1",
"husky": "^8.0.2",
"jest": "^29.3.1",
"jest-enzyme": "^7.1.2",
"keycloak-js": "18.0.1",
"lint-staged": "^13.0.4",
"moment": "^2.29.4",
"prettier": "^2.8.0",
"react": "16.14.0",
"react-dom": "16.14.0",
"react-dropzone": "^12.1.0",
"react-moment": "^1.1.2",
"react-redux": "^7.2.9",
"react-router-dom": "5.3.4",
"react-scripts": "5.0.1",
"react-syntax-highlighter": "^15.5.0",
"redux": "^4.2.0",
"redux-devtools-extension": "^2.13.9",
"redux-logger": "^3.0.6",
"redux-thunk": "^2.4.2",
"sass": "^1.56.1",
"typesafe-actions": "^5.1.0",
"typescript": "^4.4.2",
"web-vitals": "^2.1.0",
"websocket": "^1.0.34",
"yup": "0.29.3"
},
"resolutions": {
"@types/react": "^16.9.49"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts --max_old_space_size=2048 build",
"test": "react-scripts test",
"eject": "react-scripts eject"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx,json,css,scss,md}": [
"prettier --write"
]
}
}