Assist_Design/package.json

78 lines
3.2 KiB
JSON
Raw Normal View History

{
"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.25.0+sha512.5e82639027af37cf832061bcc6d639c219634488e0f2baebe785028a793de7b525ffcd3f7ff574f5e9860654e098fe852ba8ac5dd5cefe1767d23a020a92f501",
"scripts": {
"dev": "./scripts/dev/manage.sh apps",
"dev:all": "pnpm --filter @customer-portal/domain build && pnpm --parallel --filter @customer-portal/portal --filter @customer-portal/bff run dev",
"build": "pnpm --filter @customer-portal/domain build && pnpm --recursive --filter=!@customer-portal/domain run build",
"start": "pnpm --parallel --filter @customer-portal/portal --filter @customer-portal/bff run start",
"test": "pnpm --recursive run test",
"lint": "pnpm --recursive run lint",
2025-08-22 17:02:49 +09:00
"lint:fix": "pnpm --recursive run lint:fix",
"format": "prettier -w .",
"format:check": "prettier -c .",
"prepare": "husky",
"type-check": "pnpm --filter @customer-portal/domain run type-check && pnpm --filter @customer-portal/bff --filter @customer-portal/portal run type-check",
"clean": "pnpm --recursive run clean",
2025-08-21 15:24:40 +09:00
"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:logs": "./scripts/dev/manage.sh logs",
"dev:status": "./scripts/dev/manage.sh status",
"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:generate": "pnpm --filter @customer-portal/bff run db:generate",
"db:studio": "pnpm --filter @customer-portal/bff run db:studio",
"db:reset": "pnpm --filter @customer-portal/bff run db:reset",
"security:audit": "pnpm audit",
"security:check": "pnpm audit --audit-level=high",
"update:check": "pnpm outdated --recursive",
"update:safe": "pnpm update --recursive && pnpm audit && pnpm type-check",
"analyze": "pnpm --filter @customer-portal/portal run analyze",
"plesk:images": "bash ./scripts/plesk/build-images.sh"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.3",
"@eslint/js": "^9.39.1",
"@types/node": "^24.10.3",
"eslint": "^9.39.1",
"eslint-config-next": "16.0.8",
2025-08-22 17:02:49 +09:00
"eslint-plugin-prettier": "^5.5.4",
"globals": "^16.5.0",
"husky": "^9.1.7",
"prettier": "^3.7.4",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.49.0"
},
"pnpm": {
"overrides": {
"js-yaml": ">=4.1.1",
"glob": "^8.1.0",
"typescript": "5.9.3",
"@types/node": "24.10.3",
"zod": "4.1.13"
},
"onlyBuiltDependencies": [
"argon2"
]
}
}