-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 3.51 KB
/
package.json
File metadata and controls
97 lines (97 loc) · 3.51 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "tano-stack",
"private": true,
"type": "module",
"scripts": {
"dev:web": "bun --bun vite dev --port 3000",
"dev:worker": "bun --watch src/worker/index.ts",
"dev": "concurrently \"bun run dev:web\" \"bun run dev:worker\" --prefix-colors blue,magenta --names web,worker",
"build": "bun --bun vite build",
"serve": "bun --bun vite preview",
"start": "bun run .output/server/index.mjs",
"worker:start": "bun --bun src/worker/index.ts",
"test": "bun --bun vitest run",
"typecheck": "bunx tsc -p tsconfig.json --noEmit",
"lint": "bunx ultracite check",
"lint:fix": "bunx ultracite fix",
"db:generate": "bun --bun drizzle-kit generate",
"db:migrate": "bun --bun drizzle-kit migrate",
"db:push": "bun --bun drizzle-kit push",
"db:pull": "bun --bun drizzle-kit pull",
"db:studio": "bun --bun drizzle-kit studio",
"better-auth:generate": "bunx --bun @better-auth/cli generate --config src/features/auth/auth.ts --output src/db/schema/auth.ts",
"better-auth:secret": "bunx --bun @better-auth/cli secret",
"prepare": "husky"
},
"dependencies": {
"@fontsource-variable/geist": "^5.2.8",
"@fontsource-variable/geist-mono": "^5.2.7",
"@marsidev/react-turnstile": "^1.4.2",
"@radix-ui/react-alert-dialog": "^1.1.15",
"@radix-ui/react-avatar": "^1.1.11",
"@radix-ui/react-checkbox": "^1.3.3",
"@radix-ui/react-label": "^2.1.8",
"@radix-ui/react-popover": "^1.1.15",
"@radix-ui/react-progress": "^1.1.8",
"@radix-ui/react-radio-group": "^1.3.8",
"@radix-ui/react-scroll-area": "^1.2.10",
"@radix-ui/react-select": "^2.2.6",
"@radix-ui/react-separator": "^1.1.8",
"@radix-ui/react-slot": "^1.2.4",
"@radix-ui/react-toggle": "^1.1.10",
"@radix-ui/react-tooltip": "^1.2.8",
"@react-email/components": "^1.0.7",
"@tanstack/match-sorter-utils": "^8.19.4",
"@tanstack/query-db-collection": "^1.0.22",
"@tanstack/react-db": "^0.1.69",
"@tanstack/react-form": "^1.28.0",
"@tanstack/react-query": "^5.90.20",
"@tanstack/react-router": "^1.158.4",
"@tanstack/react-router-ssr-query": "^1.158.4",
"@tanstack/react-start": "^1.159.0",
"@tanstack/router-plugin": "^1.158.4",
"better-auth": "^1.4.18",
"better-themes": "^1.1.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"drizzle-orm": "^0.45.1",
"lucide-react": "^0.563.0",
"nitro": "^3.0.1-alpha.2",
"pg-boss": "^12.9.0",
"postgres": "^3.4.8",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"sonner": "^2.0.7",
"tailwind-merge": "^3.4.0",
"tailwindcss": "^4.1.18",
"tw-animate-css": "^1.4.0",
"usesend-js": "^1.6.0",
"zod": "^4.3.6"
},
"devDependencies": {
"@biomejs/biome": "2.3.14",
"@tailwindcss/vite": "^4.1.18",
"@tanstack/react-devtools": "^0.9.4",
"@tanstack/react-query-devtools": "^5.91.3",
"@tanstack/react-router-devtools": "^1.158.4",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@types/node": "^25.2.1",
"@types/react": "^19.2.13",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^5.1.3",
"@vitest/coverage-v8": "^4.0.18",
"babel-plugin-react-compiler": "^1.0.0",
"concurrently": "^9.2.1",
"dotenv": "^17.2.4",
"drizzle-kit": "^0.31.8",
"happy-dom": "^20.5.0",
"husky": "^9.1.7",
"typescript": "^5.9.3",
"ultracite": "7.1.4",
"vite": "^7.3.1",
"vite-tsconfig-paths": "^6.0.5",
"vitest": "^4.0.18"
}
}