mirror of
https://github.com/italicsjenga/agb.git
synced 2024-12-23 08:11:33 +11:00
Upgrade everything
This commit is contained in:
parent
a1c1671b0b
commit
203dc0cff7
10039
website/package-lock.json
generated
10039
website/package-lock.json
generated
File diff suppressed because it is too large
Load diff
|
@ -4,18 +4,21 @@
|
|||
"private": true,
|
||||
"dependencies": {
|
||||
"@testing-library/jest-dom": "^5.16.5",
|
||||
"@testing-library/react": "^13.4.0",
|
||||
"@testing-library/user-event": "^13.5.0",
|
||||
"@types/jest": "^27.5.2",
|
||||
"@types/node": "^16.18.23",
|
||||
"@types/react": "^18.0.35",
|
||||
"@types/react-dom": "^18.0.11",
|
||||
"@testing-library/react": "^14.0.0",
|
||||
"@testing-library/user-event": "^14.4.3",
|
||||
"@types/jest": "^29.5.2",
|
||||
"@types/node": "^20.3.3",
|
||||
"@types/react": "^18.2.14",
|
||||
"@types/react-dom": "^18.2.6",
|
||||
"react": "^18.2.0",
|
||||
"react-dom": "^18.2.0",
|
||||
"react-scripts": "5.0.1",
|
||||
"styled-components": "^5.3.9",
|
||||
"typescript": "^4.9.5",
|
||||
"web-vitals": "^2.1.4"
|
||||
"styled-components": "^6.0.2",
|
||||
"typescript": "^5.1.6",
|
||||
"web-vitals": "^3.3.2"
|
||||
},
|
||||
"overrides": {
|
||||
"typescript": "^5.1.6"
|
||||
},
|
||||
"scripts": {
|
||||
"start": "react-scripts start",
|
||||
|
@ -43,6 +46,6 @@
|
|||
},
|
||||
"devDependencies": {
|
||||
"@types/styled-components": "^5.1.26",
|
||||
"prettier": "2.8.7"
|
||||
"prettier": "2.8.8"
|
||||
}
|
||||
}
|
|
@ -101,7 +101,7 @@ export const BindingsControl: FC<{
|
|||
};
|
||||
|
||||
return (
|
||||
<ButtonWrapper onKeyUp={(evt) => setKey(evt.key)}>
|
||||
<ButtonWrapper onKeyUp={(evt: React.KeyboardEvent) => setKey(evt.key)}>
|
||||
{BindingsOrder.map((x) => (
|
||||
<SelectButton
|
||||
onClick={() => onSelectButtonClick(x)}
|
||||
|
|
Loading…
Reference in a new issue