feat: migrate site to TanStack Start

This commit is contained in:
Jet 2026-04-25 14:14:51 -07:00
parent 056daa6460
commit 1bf7b32040
No known key found for this signature in database
33 changed files with 8684 additions and 1106 deletions

View file

@ -7,8 +7,8 @@
"build": "vite build",
"check": "npm run lint && tsc --noEmit",
"dev": "vite",
"format:check": "prettier --check \"**/*.{ts,js,jsx,mdx}\" --cache",
"format:write": "prettier --write \"**/*.{ts,js,jsx,mdx}\" --cache",
"format:check": "prettier --check \"**/*.{ts,tsx,js,jsx,mdx}\" --cache",
"format:write": "prettier --write \"**/*.{ts,tsx,js,jsx,mdx}\" --cache",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"preview": "vite preview",
@ -17,6 +17,8 @@
"devDependencies": {
"@tailwindcss/vite": "^4.2.1",
"@types/node": "^25.3.3",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"anser": "^2.3.5",
"escape-carriage": "^1.3.1",
"eslint": "^10",
@ -25,8 +27,15 @@
"tailwindcss": "^4.2.1",
"typescript": "^5.9.3",
"typescript-eslint": "^8.56.1",
"vite": "^7.3.1",
"vite-plugin-singlefile": "^2.3.0"
"vite": "^7.3.1"
},
"knip": {}
"knip": {},
"dependencies": {
"@tanstack/react-router": "^1.168.24",
"@tanstack/react-start": "^1.167.49",
"@vitejs/plugin-react": "^5.2.0",
"react": "^19.2.5",
"react-dom": "^19.2.5",
"vinxi": "^0.5.11"
}
}