Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -20,3 +20,4 @@ tsconfig.tsbuildinfo
.cdk.staging
cdk.out
cdk.context.json
._*
1 change: 1 addition & 0 deletions .npmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
legacy-peer-deps=true
1 change: 1 addition & 0 deletions next-env.d.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
/// <reference types="next" />
/// <reference types="next/image-types/global" />
import "./.next/types/routes.d.ts";

// NOTE: This file should not be edited
// see https://nextjs.org/docs/pages/api-reference/config/typescript for more information.
1 change: 1 addition & 0 deletions next.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ const nextConfig = (phase: string): NextConfig => ({
output: phase === PHASE_PRODUCTION_BUILD ? "export" : undefined,
trailingSlash: false,
reactStrictMode: true,
turbopack: {},
images: {
unoptimized: true,
},
Expand Down
5,195 changes: 2,705 additions & 2,490 deletions package-lock.json

Large diffs are not rendered by default.

14 changes: 9 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
"private": true,
"license": "GPL-3.0-only",
"scripts": {
"dev": "next dev --turbo",
"build": "next build",
"dev": "next dev --webpack",
"build": "next build --webpack",
"start": "next start",
"lint": "next lint && tsc --noEmit",
"deploy": "npm run lint && npm run build && cdk deploy"
Expand All @@ -17,17 +17,18 @@
"@iconify/react": "^5.1.0",
"@mui/lab": "^6.0.0-beta.21",
"@mui/material": "^6.3.0",
"@mui/system": "^7.3.7",
"@mui/x-data-grid": "^7.23.5",
"@sentry/nextjs": "^8.47.0",
"@tanstack/react-query": "^5.75.5",
"chess.js": "^1.2.0",
"firebase": "^11.1.0",
"idb": "^8.0.1",
"jotai": "^2.11.0",
"next": "15.2.4",
"react": "18.3.1",
"next": "^16.1.6",
"react": "^19.2.4",
"react-chessboard": "^4.7.3",
"react-dom": "18.3.1",
"react-dom": "^19.2.4",
"recharts": "^2.15.0",
"tinycolor2": "^1.6.0"
},
Expand All @@ -49,5 +50,8 @@
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-prettier": "^5.2.1",
"typescript": "^5.7.2"
},
"resolutions": {
"eslint": "^9.26.0"
}
}
11 changes: 0 additions & 11 deletions public/engines/stockfish-16.1/stockfish-16.1-lite-single.js

This file was deleted.

Binary file not shown.
11 changes: 0 additions & 11 deletions public/engines/stockfish-16.1/stockfish-16.1-lite.js

This file was deleted.

Binary file not shown.
8 changes: 0 additions & 8 deletions public/engines/stockfish-16.1/stockfish-16.1-single.js

This file was deleted.

Loading