-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
05907e9
commit 5132885
Showing
19 changed files
with
319 additions
and
2,103 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,4 +3,5 @@ node_modules | |
/build | ||
.env | ||
coverage | ||
.history | ||
.history | ||
.react-router |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
import { flatRoutes } from "@react-router/fs-routes" | ||
|
||
export const routes = flatRoutes() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
/// <reference types="@remix-run/node" /> | ||
/// <reference types="react-router" /> | ||
/// <reference types="vite/client" /> | ||
/// <reference types="vitest" /> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,8 @@ | ||
{ | ||
"$schema": "https://unpkg.com/knip@5/schema.json", | ||
"entry": ["scripts/*.{ts,js}"], | ||
"entry": ["scripts/*.{ts,js}", "app/routes.ts"], | ||
"remix": true, | ||
"project": ["**/*.{js,cjs,mjs,jsx,ts,cts,mts,tsx}", "vite.config.ts"], | ||
"ignore": ["app/library/icon/icons/types.ts"], | ||
"ignoreDependencies": ["virtual:remix"] | ||
"ignoreDependencies": ["virtual:react-router", "lefthook"] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,12 +9,12 @@ | |
"execute": "tsx", | ||
"script": "npm run execute scripts/setup.ts", | ||
"cleanup": "npm run script scripts/cleanup.ts", | ||
"build": "remix vite:build", | ||
"dev": "remix vite:dev", | ||
"build": "react-router build", | ||
"dev": "react-router dev", | ||
"lint": "biome check .", | ||
"lint:ci": "biome ci .", | ||
"lint:fix": "biome check --write .", | ||
"start": "remix-serve ./build/server/index.js", | ||
"start": "react-router-serve ./build/server/index.js", | ||
"test": "vitest run", | ||
"test:ui": "vitest --ui --api 9527", | ||
"test:cov": "vitest run --coverage", | ||
|
@@ -23,13 +23,14 @@ | |
"check": "biome check .", | ||
"check:fix": "biome check --fix .", | ||
"check:unused": "knip --max-issues 1", | ||
"check:unused:fix": "knip --fix" | ||
"check:unused:fix": "knip --fix", | ||
"typegen": "react-router typegen && tsc", | ||
"postinstall": "react-router typegen" | ||
}, | ||
"dependencies": { | ||
"@forge42/seo-tools": "^1.3.0", | ||
"@remix-run/node": "^2.12.1", | ||
"@remix-run/react": "^2.12.1", | ||
"@remix-run/serve": "^2.12.1", | ||
"@react-router/node": "7.0.0-pre.0", | ||
"@react-router/serve": "7.0.0-pre.0", | ||
"clsx": "^2.1.1", | ||
"hono": "^4.6.3", | ||
"i18next": "^23.15.2", | ||
|
@@ -40,7 +41,8 @@ | |
"react": "^18.3.1", | ||
"react-dom": "^18.3.1", | ||
"react-i18next": "^15.0.2", | ||
"react-router-hono-server": "^0.2.0", | ||
"react-router": "7.0.0-pre.0", | ||
"react-router-hono-server": "https://pkg.pr.new/rphlmr/[email protected]", | ||
"remix-hono": "^0.0.16", | ||
"remix-i18next": "^6.4.1", | ||
"tailwind-merge": "^2.5.3", | ||
|
@@ -49,7 +51,8 @@ | |
"devDependencies": { | ||
"@biomejs/biome": "^1.9.3", | ||
"@dotenvx/dotenvx": "^1.16.0", | ||
"@remix-run/dev": "^2.12.1", | ||
"@react-router/dev": "7.0.0-pre.0", | ||
"@react-router/fs-routes": "7.0.0-pre.0", | ||
"@types/node": "^22.7.5", | ||
"@types/prompt": "^1.1.9", | ||
"@types/react": "^18.3.11", | ||
|
@@ -63,7 +66,7 @@ | |
"lefthook": "^1.7.18", | ||
"postcss": "^8.4.47", | ||
"prompt": "^1.3.0", | ||
"remix-development-tools": "^4.7.2", | ||
"remix-development-tools": "https://pkg.pr.new/forge42dev/Remix-Dev-Tools/[email protected]", | ||
"tailwindcss": "^3.4.13", | ||
"tsx": "^4.19.1", | ||
"typescript": "^5.6.2", | ||
|
Oops, something went wrong.