Files
portfolio/package.json
lerko96 05a32492ac
All checks were successful
Build and Deploy / deploy (push) Successful in 1m0s
rebuild portfolio: Next.js 16, React 19, Tailwind v4, homelab page, CI/CD
2026-04-12 18:52:54 -04:00

32 lines
767 B
JSON

{
"name": "lerko96-portfolio",
"version": "0.1.0",
"private": true,
"homepage": "https://www.lerko96.com",
"scripts": {
"dev": "next dev",
"build": "next build",
"postbuild": "node -e \"require('fs').writeFileSync('out/.nojekyll', '')\"",
"start": "next start",
"lint": "eslint",
"predeploy": "npm run build",
"deploy": "gh-pages -b master -d out -t"
},
"dependencies": {
"next": "16.2.2",
"react": "19.2.4",
"react-dom": "19.2.4"
},
"devDependencies": {
"gh-pages": "^6.0.0",
"@tailwindcss/postcss": "^4",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"eslint": "^9",
"eslint-config-next": "16.2.2",
"tailwindcss": "^4",
"typescript": "^5"
}
}