2025-08-20 18:02:50 +09:00
|
|
|
{
|
|
|
|
|
"name": "@customer-portal/portal",
|
|
|
|
|
"version": "0.1.0",
|
|
|
|
|
"private": true,
|
|
|
|
|
"scripts": {
|
2025-09-06 17:02:20 +09:00
|
|
|
"predev": "node ./scripts/dev-prep.mjs",
|
2025-08-30 15:47:48 +09:00
|
|
|
"dev": "next dev -p ${NEXT_PORT:-3000}",
|
2025-09-26 15:51:07 +09:00
|
|
|
"build": "next build",
|
2025-12-10 13:59:41 +09:00
|
|
|
"build:webpack": "next build --webpack",
|
2025-09-26 15:51:07 +09:00
|
|
|
"build:analyze": "ANALYZE=true next build",
|
2025-12-11 10:44:21 +09:00
|
|
|
"analyze": "pnpm run build:analyze",
|
2025-08-21 15:24:40 +09:00
|
|
|
"start": "next start -p ${NEXT_PORT:-3000}",
|
2025-08-22 17:02:49 +09:00
|
|
|
"lint": "eslint .",
|
|
|
|
|
"lint:fix": "eslint . --fix",
|
2025-09-26 15:51:07 +09:00
|
|
|
"type-check": "tsc --project tsconfig.json --noEmit",
|
|
|
|
|
"type-check:watch": "tsc --project tsconfig.json --noEmit --watch",
|
|
|
|
|
"test": "echo 'No tests yet'",
|
2025-12-11 10:44:21 +09:00
|
|
|
"bundle-analyze": "pnpm run build:analyze && pnpm exec @next/bundle-analyzer"
|
2025-08-20 18:02:50 +09:00
|
|
|
},
|
|
|
|
|
"dependencies": {
|
2025-10-20 14:56:28 +09:00
|
|
|
"@customer-portal/domain": "workspace:*",
|
2025-08-20 18:02:50 +09:00
|
|
|
"@heroicons/react": "^2.2.0",
|
2025-12-10 13:38:16 +09:00
|
|
|
"@tanstack/react-query": "^5.90.12",
|
2025-08-20 18:02:50 +09:00
|
|
|
"class-variance-authority": "^0.7.1",
|
|
|
|
|
"clsx": "^2.1.1",
|
|
|
|
|
"date-fns": "^4.1.0",
|
2025-12-12 11:02:59 +09:00
|
|
|
"next": "16.0.9",
|
2025-12-10 13:38:16 +09:00
|
|
|
"react": "19.2.1",
|
|
|
|
|
"react-dom": "19.2.1",
|
|
|
|
|
"tailwind-merge": "^3.4.0",
|
2025-08-29 14:12:12 +09:00
|
|
|
"world-countries": "^5.1.0",
|
2025-12-11 11:49:18 +09:00
|
|
|
"zod": "4.1.13",
|
2025-12-10 13:38:16 +09:00
|
|
|
"zustand": "^5.0.9"
|
2025-08-20 18:02:50 +09:00
|
|
|
},
|
|
|
|
|
"devDependencies": {
|
2025-12-12 11:02:59 +09:00
|
|
|
"@next/bundle-analyzer": "^16.0.9",
|
2025-12-10 13:38:16 +09:00
|
|
|
"@tailwindcss/postcss": "^4.1.17",
|
2025-12-11 11:49:18 +09:00
|
|
|
"@tanstack/react-query-devtools": "^5.91.1",
|
2025-12-10 13:38:16 +09:00
|
|
|
"@types/react": "^19.2.7",
|
|
|
|
|
"@types/react-dom": "^19.2.3",
|
|
|
|
|
"tailwindcss": "^4.1.17",
|
2025-12-11 11:49:18 +09:00
|
|
|
"typescript": "5.9.3"
|
2025-08-20 18:02:50 +09:00
|
|
|
}
|
|
|
|
|
}
|