-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 3.09 KB
/
Copy pathpackage.json
File metadata and controls
88 lines (88 loc) · 3.09 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
{
"type": "module",
"version": "0.1.0",
"private": true,
"packageManager": "pnpm@11.0.8",
"scripts": {
"dev": "concurrently --names dev,smtp \"vite dev --port 3000\" \"pnpm smtp\"",
"test": "vitest run",
"lint": "oxlint .",
"build": "vite build",
"start": "vite start",
"drizzle": "drizzle-kit",
"db:up": "docker compose up -d --wait postgres",
"db:status": "docker compose ps --format 'table {{.Service}}\t{{.Status}}\t{{.Ports}}'",
"db:down": "docker compose down",
"smtp": "maildev --smtp 2465 --mail-directory=./maildev",
"emails": "email dev --port 3001 --dir src/lib/email/templates",
"storybook": "storybook dev --port 6006 --no-open --disable-telemetry",
"dev:form": "pnpx http-server ./sample_form",
"better-auth:gen": "pnpx @better-auth/cli@latest generate --config ./src/lib/auth/better_auth.ts --output ./src/db/auth_schema.gen.ts",
"build:preview": "pnpm build --preset node-server",
"start:preview": "node --env-file=.env .output/server/index.mjs",
"dev:stripe": "stripe listen --forward-to localhost:3000/api/auth/stripe/webhook"
},
"dependencies": {
"@better-auth/stripe": "^1.6.19",
"@headlessui/react": "^2.2.10",
"@heroicons/react": "^2.2.0",
"@marsidev/react-turnstile": "^1.5.3",
"@opentelemetry/api-logs": "^0.219.0",
"@opentelemetry/exporter-logs-otlp-http": "^0.219.0",
"@opentelemetry/resources": "^2.8.0",
"@opentelemetry/sdk-logs": "^0.219.0",
"@opentelemetry/sdk-node": "^0.219.0",
"@tanstack/react-form": "^1.33.0",
"@tanstack/react-query": "^5.101.0",
"@tanstack/react-router": "^1.170.16",
"@tanstack/react-router-with-query": "^1.130.17",
"@tanstack/react-start": "^1.168.26",
"@uploadthing/react": "^7.3.3",
"@vitejs/plugin-react": "^6.0.2",
"better-auth": "^1.6.19",
"clsx": "^2.1.1",
"cva": "1.0.0-beta.3",
"drizzle-orm": "^0.45.2",
"drizzle-zod": "^0.8.3",
"framer-motion": "^12.40.0",
"lucide-react": "^1.20.0",
"nanoid": "^5.1.11",
"neverthrow": "^8.2.0",
"nitro": "3.0.260610-beta",
"nodemailer": "^9.0.0",
"postgres": "^3.4.9",
"react": "^19.2.7",
"react-dom": "^19.2.7",
"react-syntax-highlighter": "^16.1.1",
"sonner": "^2.0.7",
"stripe": "^22.2.1",
"tailwind-merge": "^3.6.0",
"three": "^0.184.0",
"uploadthing": "^7.7.4",
"zod": "^4.4.3"
},
"devDependencies": {
"@react-email/ui": "6.6.3",
"@storybook/addon-docs": "^10.4.6",
"@storybook/react-vite": "^10.4.6",
"@tailwindcss/vite": "^4.3.1",
"@tanstack/react-query-devtools": "^5.101.0",
"@types/nodemailer": "^8.0.1",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
"@types/react-syntax-highlighter": "^15.5.13",
"@types/three": "^0.184.1",
"concurrently": "^10.0.3",
"dotenv": "^17.4.2",
"drizzle-kit": "^0.31.10",
"maildev": "^2.2.1",
"oxlint": "^1.70.0",
"react-email": "^6.6.3",
"storybook": "^10.4.6",
"tailwindcss": "^4.3.1",
"tanstack-router-sitemap": "^1.0.13",
"typescript": "^6.0.3",
"vite": "^8.0.16",
"vitest": "^4.1.9"
}
}