-
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.53 KB
/
package.json
File metadata and controls
97 lines (97 loc) · 3.53 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": "doppler run -- vite dev --port 3000",
"dev:worker": "doppler run -- bun --watch src/worker/index.ts",
"dev": "concurrently \"bun run dev:web\" \"bun run dev:worker\" --prefix-colors blue,magenta --names web,worker",
"build": "vite build",
"serve": "vite preview",
"start": "bun run .output/server/index.mjs",
"worker:start": "bun --watch src/worker/index.ts",
"test": "vitest run",
"typecheck": "tsc -p tsconfig.json --noEmit",
"lint": "ultracite check",
"lint:fix": "ultracite fix",
"db:generate": "doppler run -- drizzle-kit generate",
"db:migrate": "doppler run -- drizzle-kit migrate",
"db:push": "doppler run -- drizzle-kit push",
"db:pull": "doppler run -- drizzle-kit pull",
"db:studio": "doppler run -- drizzle-kit studio",
"better-auth:generate": "doppler run -- @better-auth/cli generate --config src/features/auth/auth.ts --output src/db/schema/auth.ts",
"better-auth:secret": "doppler run -- @better-auth/cli secret",
"prepare": "husky"
},
"dependencies": {
"@fontsource-variable/geist": "^5.2.8",
"@fontsource-variable/geist-mono": "^5.2.7",
"@marsidev/react-turnstile": "^1.5.0",
"@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.11",
"@tanstack/match-sorter-utils": "^8.19.4",
"@tanstack/query-db-collection": "^1.0.35",
"@tanstack/react-db": "^0.1.82",
"@tanstack/react-form": "^1.28.6",
"@tanstack/react-query": "^5.96.2",
"@tanstack/react-router": "^1.168.10",
"@tanstack/react-router-ssr-query": "^1.166.10",
"@tanstack/react-start": "^1.167.16",
"@tanstack/router-plugin": "^1.167.12",
"better-auth": "^1.6.0",
"better-themes": "^1.1.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"drizzle-orm": "^0.45.2",
"lucide-react": "^1.7.0",
"pg-boss": "^12.15.0",
"postgres": "^3.4.9",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"sonner": "^2.0.7",
"tailwind-merge": "^3.5.0",
"tailwindcss": "^4.2.2",
"tw-animate-css": "^1.4.0",
"usesend-js": "^1.6.3",
"zod": "^4.3.6"
},
"devDependencies": {
"@biomejs/biome": "^2.4.10",
"@rolldown/plugin-babel": "^0.2.2",
"@tailwindcss/vite": "^4.2.2",
"@tanstack/react-devtools": "^0.10.2",
"@tanstack/react-query-devtools": "^5.96.2",
"@tanstack/react-router-devtools": "^1.166.11",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@types/node": "^25.5.2",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.1",
"@vitest/coverage-v8": "^4.1.3",
"babel-plugin-react-compiler": "^1.0.0",
"concurrently": "^9.2.1",
"dotenv": "^17.4.1",
"drizzle-kit": "^0.31.10",
"happy-dom": "^20.8.9",
"husky": "^9.1.7",
"typescript": "^6.0.2",
"ultracite": "^7.4.3",
"vite": "^8.0.7",
"vite-tsconfig-paths": "^6.1.1",
"vitest": "^4.1.3"
}
}