Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
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
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -23,4 +23,8 @@ yarn.lock

.vscode
.turbo
.tanstack
.nitro
.output
routeTree.gen.ts
migrations
14 changes: 0 additions & 14 deletions app.config.ts

This file was deleted.

3 changes: 0 additions & 3 deletions app/api.ts

This file was deleted.

9 changes: 0 additions & 9 deletions app/client.tsx

This file was deleted.

75 changes: 0 additions & 75 deletions app/routes/__root.tsx

This file was deleted.

7 changes: 0 additions & 7 deletions app/routes/api/auth/$.ts

This file was deleted.

9 changes: 0 additions & 9 deletions app/ssr.tsx

This file was deleted.

38 changes: 19 additions & 19 deletions components.json
Original file line number Diff line number Diff line change
@@ -1,21 +1,21 @@
{
"$schema": "https://ui.shadcn.com/schema.json",
"style": "new-york",
"rsc": false,
"tsx": true,
"tailwind": {
"config": "",
"css": "styles/globals.css",
"baseColor": "neutral",
"cssVariables": true,
"prefix": ""
},
"aliases": {
"components": "@/components",
"utils": "@/lib/utils",
"ui": "@/components/ui",
"lib": "@/lib",
"hooks": "@/hooks"
},
"iconLibrary": "lucide"
"$schema": "https://ui.shadcn.com/schema.json",
"style": "new-york",
"rsc": false,
"tsx": true,
"tailwind": {
"config": "",
"css": "styles/globals.css",
"baseColor": "neutral",
"cssVariables": true,
"prefix": ""
},
"aliases": {
"components": "@/components",
"utils": "@/lib/utils",
"ui": "@/components/ui",
"lib": "@/lib",
"hooks": "@/hooks"
},
"iconLibrary": "lucide"
}
47 changes: 0 additions & 47 deletions components/header.tsx

This file was deleted.

18 changes: 9 additions & 9 deletions drizzle.config.ts
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
import "dotenv/config"
import { defineConfig } from "drizzle-kit"
import "dotenv/config";
import { defineConfig } from "drizzle-kit";

export default defineConfig({
out: "./migrations",
schema: "./database/schema.ts",
dialect: "postgresql",
dbCredentials: {
url: process.env.DATABASE_URL!
}
})
out: "./migrations",
schema: "./src/database/schema.ts",
dialect: "postgresql",
dbCredentials: {
url: process.env.DATABASE_URL!,
},
});
122 changes: 66 additions & 56 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,58 +1,68 @@
{
"name": "tanstack-start",
"version": "1.0.0",
"type": "module",
"scripts": {
"dev": "vinxi dev",
"build": "vinxi build",
"start": "vinxi start",
"lint": "biome check",
"check-types": "tsc --noEmit"
},
"keywords": [
"better-auth",
"tanstack",
"vite",
"react"
],
"author": "daveycodez",
"license": "MIT",
"dependencies": {
"@daveyplate/better-auth-tanstack": "^1.3.4",
"@daveyplate/better-auth-ui": "^1.5.2",
"@radix-ui/react-dropdown-menu": "^2.1.11",
"@radix-ui/react-slot": "^1.2.0",
"@tailwindcss/vite": "^4.1.4",
"@tanstack/react-query": "^5.74.4",
"@tanstack/react-router": "^1.116.0",
"@tanstack/react-start": "^1.116.2",
"better-auth": "^1.2.7",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"dotenv": "^16.5.0",
"drizzle-orm": "^0.42.0",
"install": "^0.13.0",
"lucide-react": "^0.503.0",
"next-themes": "1.0.0-beta.0",
"pg": "^8.14.1",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"sonner": "^2.0.3",
"tailwind-merge": "^3.2.0",
"tailwindcss": "^4.1.4",
"tailwindcss-safe-area": "^0.6.0",
"vinxi": "^0.5.4"
},
"devDependencies": {
"@types/react": "^19.1.2",
"@types/react-dom": "^19.1.2",
"@vitejs/plugin-react": "^4.4.1",
"drizzle-kit": "^0.31.0",
"tsx": "^4.19.3",
"turbo": "^2.5.0",
"tw-animate-css": "^1.2.8",
"typescript": "^5.8.3",
"vite-tsconfig-paths": "^5.1.4"
},
"packageManager": "pnpm@10.6.4"
"name": "tanstack-start",
"version": "1.0.0",
"type": "module",
"scripts": {
"dev": "vite dev --port 3000",
"build": "vite build",
"start": "node .output/server/index.mjs",
"lint": "biome check",
"check-types": "tsc --noEmit"
},
"keywords": [
"better-auth",
"tanstack",
"vite",
"react"
],
"author": "daveycodez",
"license": "MIT",
"dependencies": {
"@daveyplate/better-auth-tanstack": "^1.3.4",
"@daveyplate/better-auth-ui": "^1.5.2",
"@radix-ui/react-dropdown-menu": "^2.1.11",
"@radix-ui/react-slot": "^1.2.0",
"@tailwindcss/postcss": "^4.1.10",
"@tailwindcss/vite": "^4.1.4",
"@tanstack/react-query": "^5.81.2",
"@tanstack/react-router": "^1.121.34",
"@tanstack/react-start": "^1.121.34",
"@tanstack/react-start-client": "^1.121.34",
"@tanstack/react-start-plugin": "^1.121.34",
"@tanstack/react-start-server": "^1.121.34",
"@tanstack/router-generator": "^1.121.34",
"@tanstack/start-server-core": "^1.121.34",
"better-auth": "^1.2.7",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"dotenv": "^16.5.0",
"drizzle-orm": "^0.42.0",
"install": "^0.13.0",
"lucide-react": "^0.503.0",
"next-themes": "1.0.0-beta.0",
"pg": "^8.14.1",
"postcss": "^8.5.6",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"sonner": "^2.0.3",
"tailwind-merge": "^3.2.0",
"tailwindcss": "^4.1.10",
"tailwindcss-safe-area": "^0.6.0",
"vite": "^7.0.0"
},
"devDependencies": {
"@tanstack/react-start-config": "^1.120.20",
"@tanstack/router-plugin": "^1.121.34",
"@tanstack/react-router-devtools": "^1.121.34",
"@types/react": "^19.1.2",
"@types/react-dom": "^19.1.2",
"@vitejs/plugin-react": "^4.4.1",
"drizzle-kit": "^0.31.0",
"tsx": "^4.19.3",
"turbo": "^2.5.0",
"tw-animate-css": "^1.2.8",
"typescript": "^5.8.3",
"vite-tsconfig-paths": "^5.1.4"
},
"packageManager": "pnpm@10.6.4"
}
Loading