Skip to content
Merged
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
7 changes: 7 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,13 @@ dist
dist-ssr
*.local

# TanStack Start / build output
.output
.nitro
.tanstack
.vinxi
src/routeTree.gen.ts

# Editor directories and files
.vscode/*
!.vscode/extensions.json
Expand Down
209 changes: 130 additions & 79 deletions bun.lock

Large diffs are not rendered by default.

10 changes: 9 additions & 1 deletion eslint.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,15 @@ import globals from 'globals';
import tseslint from 'typescript-eslint';

export default defineConfig([
globalIgnores(['dist', 'projects']),
globalIgnores([
'dist',
'projects',
'.output',
'.nitro',
'.tanstack',
'src/routeTree.gen.ts',
'server.ts',
]),
js.configs.recommended,
...tseslint.configs.recommended,
reactHooks.configs['recommended-latest'],
Expand Down
16 changes: 8 additions & 8 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,15 @@
"type": "module",
"packageManager": "bun@1.3.14",
"engines": {
"node": ">=24"
"node": ">=24",
"bun": ">=1.3.14"
},
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"dev": "vite dev",
"build": "vite build",
"start": "bun run server.ts",
"preview": "vite preview",
"typecheck": "tsc --noEmit",
"lint": "eslint . --max-warnings 0",
"lint:fix": "eslint . --fix"
},
Expand All @@ -22,7 +25,8 @@
"@fortawesome/free-solid-svg-icons": "^6.7.2",
"@fortawesome/react-fontawesome": "^0.2.6",
"@radix-ui/react-slot": "^1.3.0",
"@reduxjs/toolkit": "^2.12.0",
"@tanstack/react-router": "^1.170.18",
"@tanstack/react-start": "^1.168.32",
"clsx": "^2.1.1",
"date-fns": "^4.4.0",
"embla-carousel": "^8.6.0",
Expand All @@ -32,9 +36,6 @@
"react": "^19.2.7",
"react-confetti-explosion": "^3.0.3",
"react-dom": "^19.2.7",
"react-helmet-async": "^3.0.0",
"react-redux": "^9.3.0",
"react-router-dom": "^7.18.1",
"tailwind-merge": "^3.6.0",
"validator": "^13.15.35"
},
Expand All @@ -59,7 +60,6 @@
"typescript": "^5.9.3",
"typescript-eslint": "^8",
"vite": "^6.4.3",
"vite-aliases": "^0.11.8",
"vite-plugin-svgr": "^4.5.0"
},
"overrides": {
Expand Down
3 changes: 2 additions & 1 deletion railway.toml
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
[build]
builder = "RAILPACK"
buildCommand = "bun run build"
watchPatterns = ["src/**", "public/**", "index.html", "vite.config.ts", "package.json", "bun.lock"]
watchPatterns = ["src/**", "public/**", "vite.config.ts", "server.ts", "package.json", "bun.lock"]

[deploy]
startCommand = "bun run start"
healthcheckPath = "/"
restartPolicyType = "ON_FAILURE"
Loading
Loading