update deps

This commit is contained in:
hsjobeki 2023-10-02 10:35:59 +02:00
parent 8b9fc4cfdd
commit 5032758e8b
No known key found for this signature in database
GPG Key ID: EBB3BF6F9C17C62B
5 changed files with 845 additions and 233 deletions

View File

@ -36,7 +36,6 @@
installPhase = ''
runHook preInstall
npm run export
mkdir -p $out/static
cp -r ./out/* $out/static/
cp -r ./ $lib

View File

@ -1,3 +1,6 @@
{
"extends": "next/core-web-vitals"
}
"extends": "next/core-web-vitals",
"rules": {
"originalKeywordKind": "off"
}
}

View File

@ -2,6 +2,7 @@
const nextConfig = (phase, { defaultConfig }) => {
const config = {
output: "export",
reactStrictMode: true,
swcMinify: true,
images: {

1054
website/package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -5,7 +5,6 @@
"scripts": {
"dev": "next dev",
"build": "next build",
"export": "next export",
"start": "next start",
"lint": "next lint"
},
@ -15,11 +14,6 @@
"@fontsource/roboto": "^5.0.0",
"@mui/icons-material": "^5.10.9",
"@mui/material": "^5.10.13",
"@types/node": "18.18.1",
"@types/react": "^18.0.25",
"@types/react-dom": "18.2.8",
"eslint": "8.50.0",
"eslint-config-next": "13.5.3",
"highlight.js": "^11.7.0",
"minisearch": "^6.0.1",
"next": "13.5.3",
@ -32,10 +26,17 @@
"react-minisearch": "^6.0.2",
"rehype-highlight": "^7.0.0",
"seedrandom": "^3.0.5",
"typescript": "5.2.2",
"usehooks-ts": "^2.9.1"
},
"devDependencies": {
"eslint": "8.50.0",
"eslint-config-next": "13.5.3",
"typescript": "5.2.2",
"@types/node": "18.18.1",
"@types/react": "^18.0.25",
"@types/react-dom": "18.2.8",
"@typescript-eslint/eslint-plugin": "^6.7.3",
"@typescript-eslint/parser": "^6.7.3",
"@types/react-highlight": "^0.12.5",
"@types/seedrandom": "^3.0.4"
}