Files
portfolio/package.json
T
Puechberty ArthurandCopilot c69770f02f refactor: update photo gallery and reduce image count
- Reduced the number of photos displayed from 68 to 33 in the photo gallery.
- Removed unused photo files (photos 34 to 68) from the public directory.
- Updated Docker configuration for better environment management and container naming.
- Upgraded Next.js and ESLint dependencies to their latest versions.
- Added ESLint configuration file for improved code quality checks.
- Introduced a .dockerignore file to exclude unnecessary files from the Docker context.
- Added an example .env file for environment variable configuration.

Co-authored-by: Copilot <copilot@github.com>
2026-04-29 20:53:24 +02:00

31 lines
663 B
JSON

{
"name": "portfolio",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
"dependencies": {
"lucide-react": "^0.576.0",
"next": "^16.2.4",
"react": "19.2.3",
"react-dom": "19.2.3"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.5",
"@tailwindcss/postcss": "^4",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"eslint": "^9.39.4",
"eslint-config-next": "^16.1.6",
"tailwindcss": "^4",
"typescript": "5.9.3"
}
}