Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
feat: React Router 用の依存関係に更新
Next.js 関連のパッケージを削除し、React Router と Vite 関連のパッケージを追加しました。

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
  • Loading branch information
gn-t-k and claude committed Jul 26, 2025
commit fa499f21782d79033646bc59508ea412a6cdcf75
38 changes: 24 additions & 14 deletions apps/web/package.json
Original file line number Diff line number Diff line change
@@ -1,28 +1,38 @@
{
"name": "@apps/web",
"version": "0.1.0",
"name": "web",
"private": true,
"type": "module",
"scripts": {
"build": "next build",
"dev": "next dev",
"start": "next start",
"build": "react-router build",
"lint": "biome check .",
"type-check": "tsc --noEmit",
"test": "vitest"
"cf-typegen": "wrangler types",
"deploy": "pnpm run build && wrangler deploy",
"dev": "react-router dev",
"postinstall": "npm run cf-typegen",
"preview": "pnpm run build && vite preview",
"type-check": "npm run cf-typegen && react-router typegen && tsc -b"
},
"dependencies": {
"next": "15.4.4",
"isbot": "5.1.27",
"react": "19.1.0",
"react-dom": "19.1.0"
"react-dom": "19.1.0",
"react-router": "7.5.3"
},
"devDependencies": {
"@configs/common": "workspace:*",
"@configs/react": "workspace:*",
"@configs/node": "workspace:*",
"@biomejs/biome": "2.0.6",
"@configs/next": "workspace:*",
"@types/node": "22.12.0",
"@types/react": "19.1.8",
"@types/react-dom": "19.1.6",
"@cloudflare/vite-plugin": "1.0.12",
"@react-router/dev": "7.5.3",
"@tailwindcss/vite": "4.1.4",
"@types/node": "20",
"@types/react": "19.1.2",
"@types/react-dom": "19.1.2",
"tailwindcss": "4.1.4",
"typescript": "5.8.3",
"vitest": "3.2.4"
"vite": "6.3.3",
"vite-tsconfig-paths": "5.1.4",
"wrangler": "4.24.3"
}
}
Loading