- replace CRA scaffold with Next.js static export config - add app router pages: home, homelab, archive - add components: Nav, Footer, Hero, Skills, ProjectCard, ThemeScript - add ThemeContext for dark mode with FOUC prevention - add data layer: projects.ts, services.ts - update .gitignore for Next.js (ignore .next/, out/, next-env.d.ts) - add docs: handoff plan, homelab decisions, style reference
32 lines
767 B
JSON
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"
|
|
}
|
|
}
|