-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
120 lines (120 loc) · 4.4 KB
/
Copy pathpackage.json
File metadata and controls
120 lines (120 loc) · 4.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
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
{
"name": "classgamify",
"private": true,
"packageManager": "pnpm@10.30.3",
"type": "module",
"scripts": {
"dev": "vite dev --port 3000",
"build": "node --max-old-space-size=8192 ./node_modules/vite/bin/vite.js build",
"e2e": "playwright test",
"e2e:install": "playwright install",
"e2e:ui": "playwright test --ui",
"test:unit": "tsx --test \"scripts/**/*.test.ts\"",
"knip": "knip",
"check": "biome check",
"test:domain": "tsx scripts/test-domain.ts",
"lint": "biome check --write .",
"format": "biome format --write .",
"locale:sort": "tsx scripts/sort-locale-keys.ts",
"locale:check": "tsx scripts/check-locale-keys.ts",
"locale:compile": "paraglide-js compile --project ./project.inlang --outdir ./src/locale/paraglide --strategy url cookie baseLocale --emit-ts-declarations --is-server \"import.meta.env?.SSR === true\" --output-structure locale-modules",
"predeploy": "pnpm locale:check && pnpm check && pnpm build",
"deploy": "pnpm run build && wrangler deploy --config dist/server/wrangler.json --keep-vars --var CREEM_DEBUG:false",
"postinstall": "pnpm run cf-typegen",
"email:dev": "pnpm run locale:compile && email dev --dir src/mail/templates --port 3333",
"sync-worker-secrets": "wrangler secret bulk .env.production",
"cf-typegen": "wrangler types --include-runtime=false --env-interface Env",
"auth:schema:generate": "better-auth generate --yes --output src/db/auth.schema.ts",
"db:generate": "drizzle-kit generate",
"db:push": "drizzle-kit push",
"db:studio:local": "drizzle-kit studio --config drizzle.config.local.ts",
"db:studio:remote": "drizzle-kit studio --config drizzle.config.ts",
"db:migrate:local": "tsx scripts/migrate-d1.ts local",
"db:migrate:remote": "tsx scripts/migrate-d1.ts remote"
},
"dependencies": {
"@base-ui/react": "^1.5.0",
"@beehiiv/sdk": "^0.1.9",
"@fontsource/bricolage-grotesque": "^5.2.10",
"@hookform/resolvers": "^5.2.2",
"@inlang/paraglide-js": "^2.20.0",
"@libsql/client": "^0.15.15",
"@radix-ui/react-slot": "^1.2.4",
"@react-email/components": "^1.0.7",
"@t3-oss/env-core": "^0.13.10",
"@tabler/icons-react": "^3.36.1",
"@tailwindcss/typography": "^0.5.19",
"@tanstack/react-devtools": "^0.7.0",
"@tanstack/react-query": "^5.66.5",
"@tanstack/react-query-devtools": "^5.84.2",
"@tanstack/react-router": "^1.170.16",
"@tanstack/react-router-devtools": "^1.167.0",
"@tanstack/react-router-ssr-query": "^1.167.1",
"@tanstack/react-start": "^1.168.26",
"@tanstack/react-table": "^8.21.2",
"better-auth": "^1.4.12",
"better-auth-harmony": "^1.2.5",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cmdk": "^1.1.1",
"creem": "^1.4.4",
"crisp-sdk-web": "^1.0.27",
"date-fns": "^4.1.0",
"drizzle-orm": "^0.45.1",
"embla-carousel-react": "^8.6.0",
"html-react-parser": "^5.2.17",
"nanoid": "^5.1.6",
"nuqs": "^2.8.8",
"react": "^19.2.0",
"react-day-picker": "^10.0.1",
"react-dom": "^19.2.0",
"react-hook-form": "^7.71.1",
"react-resizable-panels": "^4.6.4",
"rehype-autolink-headings": "^7.1.0",
"rehype-raw": "^7.0.0",
"rehype-slug": "^6.0.0",
"rehype-stringify": "^10.0.1",
"remark-gfm": "^4.0.1",
"remark-parse": "^11.0.0",
"remark-rehype": "^11.1.2",
"resend": "^6.9.2",
"shadcn": "^4.0.0",
"sonner": "^2.0.7",
"stripe": "^17.7.0",
"tailwind-merge": "^3.0.2",
"tailwindcss": "^4.1.18",
"tw-animate-css": "^1.3.6",
"unified": "^11.0.5",
"vaul": "^1.1.2",
"zod": "^4.3.6"
},
"devDependencies": {
"@better-auth/cli": "^1.4.12",
"@biomejs/biome": "2.3.12",
"@cloudflare/vite-plugin": "1.42.3",
"@cloudflare/workers-types": "^4.20260628.1",
"@content-collections/core": "^0.13.1",
"@content-collections/vite": "^0.3.0",
"@playwright/test": "^1.61.0",
"@react-email/preview-server": "5.2.5",
"@tailwindcss/vite": "^4.3.1",
"@tanstack/devtools-vite": "^0.8.1",
"@types/node": "^22.10.2",
"@types/react": "^19.2.0",
"@types/react-dom": "^19.2.0",
"@vitejs/plugin-react": "^6.0.3",
"drizzle-kit": "^0.31.9",
"esbuild": "^0.28.1",
"knip": "^5.84.1",
"react-email": "5.2.5",
"tsx": "^4.21.0",
"typescript": "^5.7.2",
"vite": "^8.1.0",
"wrangler": "^4.105.0"
},
"pnpm": {
"overrides": {
"vitefu": "^1.1.3"
}
}
}