- Next.js 16 app with React 19 and Tailwind CSS 4 - Multi-stage Dockerfile (node:20-alpine build → nginx:alpine runtime) - docker-compose.yml for container orchestration - nginx.conf for container-level configuration - GitHub Actions CI/CD workflow for automated deployment - .dockerignore and .gitignore configured Co-Authored-By: Paperclip <noreply@paperclip.ing>
27 lines
525 B
JSON
27 lines
525 B
JSON
{
|
|
"name": "web",
|
|
"version": "0.1.0",
|
|
"private": true,
|
|
"scripts": {
|
|
"dev": "next dev",
|
|
"build": "next build",
|
|
"start": "next start",
|
|
"lint": "eslint"
|
|
},
|
|
"dependencies": {
|
|
"next": "16.2.9",
|
|
"react": "19.2.4",
|
|
"react-dom": "19.2.4"
|
|
},
|
|
"devDependencies": {
|
|
"@tailwindcss/postcss": "^4",
|
|
"@types/node": "^20",
|
|
"@types/react": "^19",
|
|
"@types/react-dom": "^19",
|
|
"eslint": "^9",
|
|
"eslint-config-next": "16.2.9",
|
|
"tailwindcss": "^4",
|
|
"typescript": "^5"
|
|
}
|
|
}
|