-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.4 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 2.4 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
{
"name": "cfmail",
"private": true,
"type": "module",
"cloudflare": {
"label": "cfmail",
"products": [
"Workers",
"D1",
"Email Sending",
"Email Routing",
"Queues"
],
"bindings": {
"APP_URL": {
"description": "URL of the worker, used for constructing webhook URLs"
}
}
},
"scripts": {
"dev": "vite dev --port 3000",
"build": "bun run db:generate && vite build",
"preview": "vite preview",
"deploy": "bun run db:migrations:apply:remote && bun run build && wrangler deploy",
"cf-typegen": "wrangler types",
"db:generate": "prisma generate",
"db:migrate": "tsx scripts/migrations.ts",
"db:migrations:apply:local": "wrangler d1 migrations apply DATABASE --local",
"db:migrations:apply:remote": "wrangler d1 migrations apply DATABASE --remote"
},
"dependencies": {
"@cloudflare/kumo": "^1.19.0",
"@fontsource-variable/inter": "^5.2.8",
"@libsql/client": "^0.17.2",
"@phosphor-icons/react": "^2.1.10",
"@prisma/adapter-d1": "^7.7.0",
"@prisma/client": "^7.7.0",
"@tailwindcss/vite": "^4.1.18",
"@tanstack/react-devtools": "latest",
"@tanstack/react-form": "^1.29.1",
"@tanstack/react-query": "^5.99.2",
"@tanstack/react-router": "latest",
"@tanstack/react-router-devtools": "latest",
"@tanstack/react-router-ssr-query": "latest",
"@tanstack/react-start": "latest",
"@tanstack/router-plugin": "^1.132.0",
"@tanstack/zod-adapter": "^1.166.9",
"@trpc/client": "^11.16.0",
"@trpc/server": "^11.16.0",
"@trpc/tanstack-react-query": "^11.16.0",
"jose": "^6.2.2",
"postal-mime": "^2.7.4",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"superjson": "^2.2.6",
"tailwindcss": "^4.1.18",
"zod": "^4.3.6"
},
"devDependencies": {
"@biomejs/biome": "2.4.12",
"@cloudflare/vite-plugin": "^1.32.3",
"@tailwindcss/typography": "^0.5.16",
"@tanstack/devtools-vite": "latest",
"@testing-library/dom": "^10.4.1",
"@testing-library/react": "^16.3.0",
"@types/node": "^22.10.2",
"@types/react": "^19.2.0",
"@types/react-dom": "^19.2.0",
"@vitejs/plugin-react": "^6.0.1",
"jsdom": "^28.1.0",
"prisma": "^7.7.0",
"typescript": "^5.7.2",
"vite": "^8.0.0",
"vitest": "^3.0.5",
"wrangler": "^4.84.1"
},
"pnpm": {
"onlyBuiltDependencies": [
"esbuild",
"lightningcss"
]
}
}