Assist_Design/apps/portal/package.json

48 lines
1.5 KiB
JSON
Raw Normal View History

{
"name": "@customer-portal/portal",
"version": "0.1.0",
"private": true,
"scripts": {
"predev": "node ./scripts/dev-prep.mjs",
"dev": "next dev -p ${NEXT_PORT:-3000}",
"build": "next build",
"build:turbo": "next build --turbopack",
"build:analyze": "ANALYZE=true next build",
"analyze": "npm 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",
"type-check": "tsc --project tsconfig.json --noEmit",
"type-check:watch": "tsc --project tsconfig.json --noEmit --watch",
"test": "echo 'No tests yet'",
"bundle-analyze": "npm run build:analyze && npx @next/bundle-analyzer"
},
"dependencies": {
"@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",
"next": "15.5.7",
"react": "19.2.1",
"react-dom": "19.2.1",
"tailwind-merge": "^3.4.0",
"tw-animate-css": "^1.4.0",
"world-countries": "^5.1.0",
"zod": "^4.1.13",
"zustand": "^5.0.9"
},
"devDependencies": {
"@next/bundle-analyzer": "^15.5.7",
"@tailwindcss/postcss": "^4.1.17",
"@types/node": "^24.10.2",
"@types/react": "^19.2.7",
"@types/react-dom": "^19.2.3",
"tailwindcss": "^4.1.17",
"typescript": "^5.9.3",
"webpack-bundle-analyzer": "^5.1.0"
}
}