Skip to content
Closed
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 21, 2025
commit fb31c652dd64a51fb626affb6a7b471e053d1f42
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.2",
"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"
}
}
4 changes: 2 additions & 2 deletions apps/web/worker-configuration.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7294,7 +7294,7 @@ declare module "cloudflare:email" {
prototype: EmailMessage;
new (from: string, to: string, raw: ReadableStream | string): EmailMessage;
};
export { _EmailMessage as EmailMessage };
export type { _EmailMessage as EmailMessage };
}
/**
* Hello World binding to serve as an explanatory example. DO NOT USE
Expand Down Expand Up @@ -7930,7 +7930,7 @@ declare module "cloudflare:sockets" {
address: string | SocketAddress,
options?: SocketOptions,
): Socket;
export { _connect as connect };
export type { _connect as connect };
}
declare namespace TailStream {
interface Header {
Expand Down
Loading