fix: update dependencies to latest

This commit is contained in:
2023-12-26 22:24:32 +01:00
parent a49e844c70
commit 8168a18ede
14 changed files with 2925 additions and 3389 deletions

View File

@ -7,10 +7,10 @@ export interface LoaderProps {
}
export const Loader: React.FC<LoaderProps> = (props) => {
const { width = 50, height = 50 } = props
const { width = 50, height = 50, className } = props
return (
<div className={props.className}>
<div className={className}>
<div
data-cy="progress-spinner"
className="relative my-0 mx-auto before:content-none before:block before:pt-[100%]"

File diff suppressed because it is too large Load Diff

View File

@ -11,7 +11,7 @@
"test:dev": "start-server-and-test \"dev\" \"http://127.0.0.1:3000\" \"cypress open\""
},
"dependencies": {
"@sinclair/typebox": "0.31.18",
"@sinclair/typebox": "0.32.3",
"clsx": "2.0.0",
"next": "13.2.4",
"next-themes": "0.2.1",
@ -22,17 +22,17 @@
},
"devDependencies": {
"@tsconfig/strictest": "2.0.2",
"@types/node": "20.8.7",
"@types/react": "18.2.31",
"@types/react-dom": "18.2.14",
"@types/node": "20.10.5",
"@types/react": "18.2.45",
"@types/react-dom": "18.2.18",
"autoprefixer": "10.4.16",
"cypress": "13.3.2",
"eslint": "8.52.0",
"cypress": "13.6.2",
"eslint": "8.56.0",
"eslint-config-next": "13.2.4",
"next-translate-plugin": "2.0.5",
"postcss": "8.4.31",
"start-server-and-test": "2.0.1",
"tailwindcss": "3.3.3",
"typescript": "5.2.2"
"postcss": "8.4.32",
"start-server-and-test": "2.0.3",
"tailwindcss": "3.4.0",
"typescript": "5.3.3"
}
}

View File

@ -5,6 +5,7 @@
"module": "ESNext",
"lib": ["dom", "dom.iterable", "ESNext"],
"allowJs": true,
"baseUrl": ".",
"types": ["cypress"],
"noEmit": true,
"moduleResolution": "node",