* 🚀 refactor: simplify deployment process in workflow file * 🚀 chore: add IMAGE_NAME to GITHUB_ENV for deployment workflow * ✨ chore: simplify deployment logging in workflow file * 🚀 fix: correct container name in deployment script logic * 🚀 refactor: rename job and streamline deployment steps * Update README.md * ✨ fix: prevent multiple form submissions in Contact component * ✨ feat: honeypot and timestamp checks to form submission * ✨ refactor: simplify contact form and improve UI elements * ✨ feat: add responsive masonry layout for projects display * ✨ style: Update project title size and improve layout visibility * ✨ fix: remove unnecessary test assertions and improve act usage * ✨ chore: add @types/react-responsive-masonry package fixing with this import error on building * ✨ chore: remove unused dev dependencies from package-lock.json * ✨ refactor: update environment variable usage and add caching * ✨ refactor: update environment variables and dependencies * ✨ chore: streamline Dockerfile and remove redundant steps
53 lines
1.4 KiB
JSON
53 lines
1.4 KiB
JSON
{
|
|
"name": "portfolio",
|
|
"version": "0.1.0",
|
|
"private": true,
|
|
"scripts": {
|
|
"dev": "next dev",
|
|
"build": "next build",
|
|
"start": "next start",
|
|
"lint": "next lint",
|
|
"buildAnalyze": "cross-env ANALYZE=true next build",
|
|
"test": "jest"
|
|
},
|
|
"dependencies": {
|
|
"@next/bundle-analyzer": "^15.1.7",
|
|
"@prisma/client": "^6.3.1",
|
|
"@tryghost/content-api": "^1.11.21",
|
|
"@vercel/og": "^0.6.5",
|
|
"dotenv": "^16.4.7",
|
|
"gray-matter": "^4.0.3",
|
|
"next": "15.1.7",
|
|
"node-cache": "^5.1.2",
|
|
"node-fetch": "^2.7.0",
|
|
"nodemailer": "^6.10.0",
|
|
"react": "^19.0.0",
|
|
"react-dom": "^19.0.0",
|
|
"react-responsive-masonry": "^2.7.1"
|
|
},
|
|
"devDependencies": {
|
|
"@eslint/eslintrc": "^3",
|
|
"@testing-library/dom": "^10.4.0",
|
|
"@testing-library/jest-dom": "^6.6.3",
|
|
"@testing-library/react": "^16.2.0",
|
|
"@types/jest": "^29.5.14",
|
|
"@types/node": "^22",
|
|
"@types/nodemailer": "^6.4.17",
|
|
"@types/react": "^19",
|
|
"@types/react-dom": "^19",
|
|
"@types/react-responsive-masonry": "^2.6.0",
|
|
"cross-env": "^7.0.3",
|
|
"eslint": "^9",
|
|
"eslint-config-next": "15.1.7",
|
|
"jest": "^29.7.0",
|
|
"jest-environment-jsdom": "^29.7.0",
|
|
"nodemailer-mock": "^2.0.8",
|
|
"postcss": "^8",
|
|
"tailwindcss": "^3.4.17",
|
|
"ts-jest": "^29.2.5",
|
|
"ts-node": "^10.9.2",
|
|
"typescript": "^5.7.3",
|
|
"whatwg-fetch": "^3.6.20"
|
|
}
|
|
}
|