Files
portfolio/package.json
Denshooter 180b9aa9f8 full upgrade (#31)
*  chore: update CI workflow to include testing and multi-arch build (#29)

*  chore: remove unused dependencies from package-lock.json and updated to a better local dev environment (#30)

*  test: add unit tests

*  test: add unit tests for whole project

*  feat: add whatwg-fetch for improved fetch support

*  chore: update Node.js version to 22 in workflow

*  refactor: update types and improve email handling tests

*  refactor: remove unused imports

*  fix: normalize image name to lowercase in workflows

*  fix: ensure Docker image names are consistently lowercase

*  chore: update

*  chore: update base URL to use secret variable

*  chore: update to login to ghcr

*  fix: add missing 'fi' to close if statement in workflow
2025-02-16 16:36:21 +01:00

50 lines
1.3 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-fetch": "^3.3.2",
"nodemailer": "^6.10.0",
"react": "^19.0.0",
"react-dom": "^19.0.0"
},
"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",
"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"
}
}