-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.94 KB
/
Copy pathpackage.json
File metadata and controls
66 lines (66 loc) · 1.94 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
{
"name": "wafts",
"license": "MIT",
"type": "module",
"scripts": {
"dev": "bun run --bun vite dev",
"build": "vite build",
"start": "vite preview",
"lint": "oxlint",
"lint:fix": "oxlint --fix",
"fmt": "oxfmt",
"fmt:check": "oxfmt --check",
"postinstall": "bunx --bun simple-git-hooks",
"db:push": "bunx --bun drizzle-kit push",
"db:studio": "bunx --bun drizzle-kit studio",
"auth:generate": "bunx --bun auth@latest generate --config ./src/auth/auth-server.ts --output ./src/auth/schema.ts --yes"
},
"dependencies": {
"@base-ui/react": "^1.4.1",
"@better-auth/redis-storage": "^1.6.5",
"@fontsource-variable/geist": "^5.2.8",
"@t3-oss/env-core": "^0.13.11",
"@tailwindcss/vite": "^4.2.2",
"@tanstack/react-form": "^1.29.1",
"@tanstack/react-router": "^1.168.22",
"@tanstack/react-start": "^1.167.41",
"better-auth": "^1.6.5",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"drizzle-orm": "^0.45.2",
"ioredis": "^5.10.1",
"lucide-react": "^1.8.0",
"pg": "^8.20.0",
"react": "^19.2.5",
"react-dom": "^19.2.5",
"shadcn": "^4.3.1",
"sonner": "^2.0.7",
"tailwind-merge": "^3.5.0",
"tailwindcss": "^4.2.2",
"tanstack-start-themes": "0.0.5",
"tw-animate-css": "^1.4.0",
"zod": "^4.3.6"
},
"devDependencies": {
"@types/bun": "^1.3.12",
"@types/pg": "^8.20.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.1",
"drizzle-kit": "^0.31.10",
"nano-staged": "^1.0.2",
"oxfmt": "^0.46.0",
"oxlint": "^1.60.0",
"oxlint-tsgolint": "^0.21.1",
"simple-git-hooks": "^2.13.1",
"typescript": "^6.0.3",
"vite": "^8.0.8"
},
"simple-git-hooks": {
"pre-commit": "./node_modules/.bin/nano-staged"
},
"nano-staged": {
"*": "bun run --bun fmt --no-error-on-unmatched-pattern",
"*.{js,jsx,ts,tsx,mjs,cjs}": "bun run --bun lint:fix"
}
}