This commit is contained in:
NotII
2025-03-23 22:52:47 +00:00
parent 290bba7f05
commit 4d8e199ab6
6 changed files with 177 additions and 135 deletions

View File

@@ -4,9 +4,12 @@
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"build": "cross-env NODE_OPTIONS='--max_old_space_size=4096' NEXT_TELEMETRY_DISABLED=1 next build",
"build:fast": "cross-env NODE_OPTIONS='--max_old_space_size=4096' NEXT_TELEMETRY_DISABLED=1 NEXT_SKIP_LINT=1 NEXT_SKIP_TS_CHECK=1 next build",
"build:optimized": "node scripts/optimize-build.js",
"start": "next start",
"lint": "next lint"
"lint": "next lint",
"clean": "rm -rf .next && rm -rf node_modules/.cache"
},
"dependencies": {
"@hookform/resolvers": "^3.9.1",
@@ -69,6 +72,7 @@
"@types/node": "^22",
"@types/react": "^18",
"@types/react-dom": "^18",
"cross-env": "^7.0.3",
"eslint": "^9.19.0",
"postcss": "^8",
"tailwindcss": "^3.4.17",