Files
soroush.asadi 62bd7a12f5 Build Next.js apps with Webpack instead of Turbopack
Next 16 defaults `next build` to Turbopack, which requires native SWC
bindings unavailable for Alpine musl from our npm mirror (only the WASM
fallback loads). Pass --webpack so the build uses the WASM SWC fallback
and succeeds inside the Docker images.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-05-29 17:35:28 +03:30

36 lines
857 B
JSON

{
"name": "meezi-website",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "next dev -p 3010",
"build": "next build --webpack",
"start": "next start -p 3010",
"lint": "next lint"
},
"dependencies": {
"next": "16.2.6",
"react": "19.2.6",
"react-dom": "19.2.6",
"next-intl": "4.12.0",
"next-mdx-remote": "^5.0.0",
"gray-matter": "^4.0.3",
"reading-time": "^1.5.0",
"lucide-react": "^0.460.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"tailwind-merge": "^2.5.4"
},
"devDependencies": {
"@types/node": "^22.0.0",
"@types/react": "19.1.4",
"@types/react-dom": "19.1.4",
"typescript": "5.8.3",
"tailwindcss": "3.4.14",
"autoprefixer": "^10.4.20",
"postcss": "^8.4.49",
"eslint": "^8.57.0",
"eslint-config-next": "16.2.6"
}
}