2026-02-02 22:55:26 +09:00
|
|
|
{
|
|
|
|
|
"name": "frontend",
|
|
|
|
|
"version": "0.1.0",
|
|
|
|
|
"private": true,
|
|
|
|
|
"scripts": {
|
|
|
|
|
"dev": "next dev",
|
|
|
|
|
"build": "next build",
|
|
|
|
|
"start": "next start",
|
|
|
|
|
"lint": "eslint"
|
|
|
|
|
},
|
|
|
|
|
"dependencies": {
|
2026-02-05 22:21:51 +09:00
|
|
|
"@radix-ui/react-dialog": "^1.1.15",
|
|
|
|
|
"@radix-ui/react-dropdown-menu": "^2.1.16",
|
2026-02-05 22:54:22 +09:00
|
|
|
"@radix-ui/react-label": "^2.1.8",
|
feat(frontend): improve strategy and backtest pages
- Add StrategyCard component with icon, CAGR range, risk badge, and stock count
- Update strategy list page with improved cards and descriptions
- Redesign backtest page with split layout (form left, results right)
- Add summary cards for CAGR, MDD, Sharpe ratio, and total return
- Integrate charts for equity curve, drawdown, and yearly returns
- Add badge, select, and skeleton UI components
- Toggle between new backtest form and history view
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-02-05 23:07:19 +09:00
|
|
|
"@radix-ui/react-select": "^2.2.6",
|
2026-02-05 22:21:51 +09:00
|
|
|
"@radix-ui/react-slot": "^1.2.4",
|
2026-02-05 23:03:45 +09:00
|
|
|
"@radix-ui/react-tabs": "^1.1.13",
|
2026-02-05 22:21:51 +09:00
|
|
|
"@radix-ui/react-tooltip": "^1.2.8",
|
2026-02-05 22:17:26 +09:00
|
|
|
"class-variance-authority": "^0.7.1",
|
|
|
|
|
"clsx": "^2.1.1",
|
2026-02-05 22:24:07 +09:00
|
|
|
"lightweight-charts": "^5.1.0",
|
2026-02-05 22:20:37 +09:00
|
|
|
"lucide-react": "^0.563.0",
|
2026-02-02 22:55:26 +09:00
|
|
|
"next": "16.1.6",
|
2026-02-05 22:19:27 +09:00
|
|
|
"next-themes": "^0.4.6",
|
2026-02-02 22:55:26 +09:00
|
|
|
"react": "19.2.3",
|
2026-02-05 22:17:26 +09:00
|
|
|
"react-dom": "19.2.3",
|
2026-02-05 22:24:07 +09:00
|
|
|
"recharts": "^3.7.0",
|
2026-02-05 23:11:41 +09:00
|
|
|
"sonner": "^2.0.7",
|
2026-02-05 22:17:26 +09:00
|
|
|
"tailwind-merge": "^3.4.0"
|
2026-02-02 22:55:26 +09:00
|
|
|
},
|
|
|
|
|
"devDependencies": {
|
|
|
|
|
"@tailwindcss/postcss": "^4",
|
|
|
|
|
"@types/node": "^20",
|
|
|
|
|
"@types/react": "^19",
|
|
|
|
|
"@types/react-dom": "^19",
|
|
|
|
|
"eslint": "^9",
|
|
|
|
|
"eslint-config-next": "16.1.6",
|
2026-02-05 22:17:26 +09:00
|
|
|
"tailwindcss": "^4.1.18",
|
2026-02-02 22:55:26 +09:00
|
|
|
"typescript": "^5"
|
|
|
|
|
}
|
|
|
|
|
}
|