Assist_Design/package.json
tema 1640fae457 Add new payment methods and health check endpoints in Auth and Invoices services
- Introduced `validateSignup` endpoint in AuthController for customer number validation during signup.
- Added `healthCheck` method in AuthService to verify service integrations and database connectivity.
- Implemented `getPaymentMethods`, `getPaymentGateways`, and `refreshPaymentMethods` endpoints in InvoicesController for managing user payment options.
- Enhanced InvoicesService with methods to invalidate payment methods cache and improved error handling.
- Updated currency handling across various services and components to reflect JPY as the default currency.
- Added new dependencies in package.json for ESLint configuration.
2025-08-30 15:10:24 +09:00

66 lines
2.5 KiB
JSON

{
"name": "customer-portal",
"version": "1.0.0",
"description": "Customer portal with BFF architecture",
"private": true,
"engines": {
"node": ">=22.0.0",
"pnpm": ">=10.0.0"
},
"packageManager": "pnpm@10.15.0",
"scripts": {
"dev": "pnpm --parallel --recursive run dev",
"build": "pnpm --recursive run build",
"start": "pnpm --parallel --filter portal --filter @customer-portal/bff run start",
"test": "pnpm --recursive run test",
"lint": "pnpm --recursive run lint",
"lint:fix": "pnpm --recursive run lint:fix",
"format": "prettier -w .",
"format:check": "prettier -c .",
"prepare": "husky",
"type-check": "pnpm --recursive run type-check",
"clean": "pnpm --recursive run clean",
"dev:start": "./scripts/dev/manage.sh start",
"dev:stop": "./scripts/dev/manage.sh stop",
"dev:restart": "./scripts/dev/manage.sh restart",
"dev:tools": "./scripts/dev/manage.sh tools",
"dev:apps": "./scripts/dev/manage.sh apps",
"dev:logs": "./scripts/dev/manage.sh logs",
"dev:status": "./scripts/dev/manage.sh status",
"dev:migrate": "./scripts/dev/manage.sh migrate",
"dev:reset": "./scripts/dev/manage.sh reset",
"prod:deploy": "./scripts/prod/manage.sh deploy",
"prod:start": "./scripts/prod/manage.sh start",
"prod:stop": "./scripts/prod/manage.sh stop",
"prod:restart": "./scripts/prod/manage.sh restart",
"prod:update": "./scripts/prod/manage.sh update",
"prod:build": "./scripts/prod/manage.sh build",
"prod:status": "./scripts/prod/manage.sh status",
"prod:logs": "./scripts/prod/manage.sh logs",
"prod:backup": "./scripts/prod/manage.sh backup",
"prod:cleanup": "./scripts/prod/manage.sh cleanup",
"db:migrate": "pnpm --filter @customer-portal/bff run db:migrate",
"db:studio": "pnpm --filter @customer-portal/bff run db:studio",
"db:reset": "pnpm --filter @customer-portal/bff run db:reset",
"update:check": "pnpm outdated --recursive",
"update:all": "pnpm update --recursive --latest && pnpm audit && pnpm type-check",
"update:safe": "pnpm update --recursive && pnpm audit && pnpm type-check"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.1",
"@eslint/js": "^9.34.0",
"@types/node": "^24.3.0",
"eslint": "^9.33.0",
"eslint-config-next": "15.5.0",
"eslint-plugin-prettier": "^5.5.4",
"globals": "^16.3.0",
"husky": "^9.1.7",
"prettier": "^3.6.2",
"typescript": "^5.9.2",
"typescript-eslint": "^8.40.0"
},
"dependencies": {
"@sendgrid/mail": "^8.1.5"
}
}