5-4 - convert to next.js

This commit is contained in:
Charlotte Croce 2025-05-04 21:41:58 -04:00
parent 432a72b2f2
commit a23cb6f09c
32 changed files with 9050 additions and 371 deletions

28
package.json Normal file
View file

@ -0,0 +1,28 @@
{
"name": "charlotte-portfolio",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint"
},
"dependencies": {
"lucide-react": "^0.454.0",
"next": "15.3.1",
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"devDependencies": {
"@types/node": "^22",
"@types/react": "^18.3.0",
"@types/react-dom": "^18.3.0",
"autoprefixer": "^10.4.20",
"eslint": "^9.18.0",
"eslint-config-next": "15.3.1",
"postcss": "^8.4.49",
"tailwindcss": "^3.4.17",
"typescript": "^5.7.3"
}
}