Update package dependencies for improved compatibility and consistency

- Added TypeScript, @types/node, and zod dependencies with specific versions to ensure compatibility across applications.
- Standardized dependency versions in package.json files for BFF, Portal, and Domain applications to maintain consistency.
- Removed outdated dependency specifications to streamline package management.
This commit is contained in:
barsa 2025-12-11 11:49:18 +09:00
parent eb31fae344
commit fee93cc02b
4 changed files with 14 additions and 12 deletions

View File

@ -56,13 +56,12 @@
"passport-jwt": "^4.0.1",
"passport-local": "^1.0.0",
"pg": "^8.16.3",
"pino-http": "^11.0.0",
"rate-limiter-flexible": "^9.0.0",
"reflect-metadata": "^0.2.2",
"rxjs": "^7.8.2",
"salesforce-pubsub-api-client": "^5.5.1",
"ssh2-sftp-client": "^12.0.1",
"zod": "^4.1.13"
"zod": "4.1.13"
},
"devDependencies": {
"@nestjs/cli": "^11.0.14",
@ -71,7 +70,7 @@
"@types/cookie-parser": "^1.4.10",
"@types/express": "^5.0.6",
"@types/jest": "^30.0.0",
"@types/node": "^24.10.2",
"@types/node": "24.10.3",
"@types/passport-jwt": "^4.0.1",
"@types/passport-local": "^1.0.38",
"@types/pg": "^8.15.6",
@ -83,7 +82,7 @@
"supertest": "^7.1.4",
"ts-jest": "^29.4.6",
"tsc-alias": "^1.8.16",
"typescript": "^5.9.3"
"typescript": "5.9.3"
},
"jest": {
"moduleFileExtensions": ["js", "json", "ts"],

View File

@ -21,7 +21,6 @@
"@customer-portal/domain": "workspace:*",
"@heroicons/react": "^2.2.0",
"@tanstack/react-query": "^5.90.12",
"@tanstack/react-query-devtools": "^5.91.1",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"date-fns": "^4.1.0",
@ -31,16 +30,17 @@
"tailwind-merge": "^3.4.0",
"tw-animate-css": "^1.4.0",
"world-countries": "^5.1.0",
"zod": "^4.1.13",
"zod": "4.1.13",
"zustand": "^5.0.9"
},
"devDependencies": {
"@next/bundle-analyzer": "^16.0.8",
"@tailwindcss/postcss": "^4.1.17",
"@types/node": "^24.10.2",
"@tanstack/react-query-devtools": "^5.91.1",
"@types/node": "24.10.3",
"@types/react": "^19.2.7",
"@types/react-dom": "^19.2.3",
"tailwindcss": "^4.1.17",
"typescript": "^5.9.3"
"typescript": "5.9.3"
}
}

View File

@ -65,7 +65,10 @@
"pnpm": {
"overrides": {
"js-yaml": ">=4.1.1",
"glob": "^8.1.0"
"glob": "^8.1.0",
"typescript": "5.9.3",
"@types/node": "24.10.3",
"zod": "4.1.13"
},
"onlyBuiltDependencies": [
"argon2"

View File

@ -133,10 +133,10 @@
"typecheck": "pnpm run type-check"
},
"dependencies": {
"zod": "^4.1.13"
"zod": "4.1.13"
},
"devDependencies": {
"@types/node": "^24.10.2",
"typescript": "^5.9.3"
"@types/node": "24.10.3",
"typescript": "5.9.3"
}
}