-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
121 lines (121 loc) · 3.95 KB
/
package.json
File metadata and controls
121 lines (121 loc) · 3.95 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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
{
"name": "tanvex",
"version": "0.1.0",
"private": true,
"description": "TanStack Start + Convex + Better Auth starter. SSR auth, email OTP, user profiles, rate limiting, one-command setup.",
"keywords": [
"authentication",
"base-ui",
"better-auth",
"bun",
"convex",
"email-otp",
"oxc",
"oxfmt",
"oxlint",
"react-19",
"resend",
"shadcn-ui",
"ssr",
"starter",
"tailwindcss-v4",
"tanstack-router",
"tanstack-start",
"template",
"typescript",
"vite",
"zod"
],
"homepage": "https://github.com/ramonclaudio/tanvex",
"bugs": {
"url": "https://github.com/ramonclaudio/tanvex/issues"
},
"license": "MIT",
"author": "Ramon Claudio <[email protected]> (https://github.com/ramonclaudio)",
"repository": {
"type": "git",
"url": "git+https://github.com/ramonclaudio/tanvex.git"
},
"type": "module",
"sideEffects": false,
"scripts": {
"setup": "bun run scripts/setup.ts",
"setup:local": "bun run scripts/setup.ts --local",
"dev": "concurrently -k -n convex,vite -c blue,magenta \"bunx convex dev\" \"vite dev\"",
"dev:web": "vite dev",
"dev:convex": "bunx convex dev",
"build": "tsc --noEmit && vite build",
"start": "node .output/server/index.mjs",
"preview": "vite preview",
"test": "vitest run",
"test:watch": "vitest",
"lint": "oxlint",
"lint:fix": "oxlint --fix",
"lint:fix:suggest": "oxlint --fix --fix-suggestions",
"lint:fix:dangerous": "oxlint --fix --fix-suggestions --fix-dangerously",
"fmt": "oxfmt",
"fmt:check": "oxfmt --check",
"analyze": "ANALYZE=1 vite build",
"clean": "find . -maxdepth 1 \\( -name node_modules -o -name bun.lock -o -name .nitro -o -name .output -o -name .tanstack -o -name .wrangler -o -name .vinxi -o -name dist -o -name dist-ssr -o -name coverage -o -name convex/_generated \\) -exec trash {} + ; find . -name .DS_Store -not -path './node_modules/*' -exec trash {} +",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@base-ui/react": "^1.3.0",
"@convex-dev/better-auth": "0.11.5",
"@convex-dev/rate-limiter": "^0.3.2",
"@convex-dev/react-query": "0.1.0",
"@convex-dev/resend": "^0.2.3",
"@fontsource-variable/geist": "^5.2.8",
"@hugeicons/core-free-icons": "^4.1.1",
"@hugeicons/react": "^1.1.6",
"@opentelemetry/api": "^1.9.0",
"@tanstack/react-form": "^1.29.1",
"@tanstack/react-query": "^5.99.2",
"@tanstack/react-query-devtools": "^5.99.2",
"@tanstack/react-router": "^1.168.23",
"@tanstack/react-router-ssr-query": "^1.166.11",
"@tanstack/react-start": "^1.167.42",
"better-auth": "1.6.9",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"convex": "^1.34.1",
"convex-helpers": "^0.1.115",
"react": "^19.2.5",
"react-dom": "^19.2.5",
"sonner": "^2.0.7",
"tailwind-merge": "^3.5.0",
"tw-animate-css": "^1.4.0",
"web-vitals": "^5.2.0",
"zod": "^4.3.6"
},
"devDependencies": {
"@tailwindcss/vite": "^4.2.2",
"@tanstack/devtools-vite": "^0.6.0",
"@tanstack/react-devtools": "^0.10.2",
"@tanstack/react-router-devtools": "^1.166.13",
"@testing-library/dom": "^10.4.1",
"@testing-library/react": "^16.3.2",
"@types/bun": "^1.3.12",
"@types/node": "^25.6.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.1",
"concurrently": "^9.2.1",
"jsdom": "^29.0.2",
"nitro": "^3.0.260311-beta",
"oxfmt": "^0.44.0",
"oxlint": "^1.59.0",
"oxlint-tsgolint": "^0.20.0",
"rollup-plugin-visualizer": "^7.0.1",
"shadcn": "^4.2.0",
"tailwindcss": "^4.2.2",
"typescript": "^6.0.2",
"vite": "^8.0.8",
"vitest": "^4.1.4"
},
"patchedDependencies": {
"@convex-dev/[email protected]": "patches/@convex-dev%[email protected]",
"@hugeicons/[email protected]": "patches/@hugeicons%[email protected]",
"[email protected]": "patches/[email protected]"
}
}