8b69a12342
- Switched from npm to pnpm for dependency management in Dockerfile, improving build efficiency. - Updated Vue and Vue Router versions in package.json for better compatibility. - Changed placeholder URLs in site.ts to actual Fiverr links and adjusted review count. - Removed obsolete sitemap.xml file to streamline the project. - Added a new rate limiting plugin to manage API request limits for the contact endpoint.
43 lines
906 B
JSON
43 lines
906 B
JSON
{
|
|
"name": "portfolio",
|
|
"version": "0.0.0",
|
|
"private": true,
|
|
"type": "module",
|
|
"scripts": {
|
|
"dev": "nuxt dev",
|
|
"build": "nuxt build",
|
|
"generate": "nuxt generate",
|
|
"preview": "nuxt preview",
|
|
"postinstall": "nuxt prepare",
|
|
"lint": "eslint .",
|
|
"typecheck": "nuxt typecheck"
|
|
},
|
|
"dependencies": {
|
|
"@nuxt/eslint": "^1.15.2",
|
|
"@nuxt/image": "^2.0.0",
|
|
"@nuxt/ui": "^3.0.0",
|
|
"@nuxtjs/i18n": "^10.2.4",
|
|
"@nuxtjs/sitemap": "^8.0.12",
|
|
"nodemailer": "^8.0.5",
|
|
"nuxt": "^4.0.0",
|
|
"nuxt-gtag": "^4.1.0",
|
|
"vue": "^3.5.0",
|
|
"vue-router": "^4.5.0",
|
|
"zod": "^4.3.6"
|
|
},
|
|
"devDependencies": {
|
|
"@types/nodemailer": "^8.0.0",
|
|
"tailwindcss": "^4.2.2",
|
|
"typescript": "~5.8.0"
|
|
},
|
|
"pnpm": {
|
|
"onlyBuiltDependencies": [
|
|
"@parcel/watcher",
|
|
"esbuild",
|
|
"sharp",
|
|
"unrs-resolver",
|
|
"vue-demi"
|
|
]
|
|
}
|
|
}
|