-
Notifications
You must be signed in to change notification settings - Fork 460
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 2 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
{
"name": "shipfree",
"version": "0.1.0",
"private": true,
"packageManager": "bun@1.2.20",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"format": "biome format --write",
"typecheck": "tsc --noEmit --pretty",
"lint": "biome lint",
"biome:check": "biome check",
"generate-migration": "drizzle-kit generate",
"migrate:local": "bun run ./scripts/migrate.ts",
"migrate:prod": "cross-env NODE_ENV=production bun run ./scripts/migrate.ts"
},
"dependencies": {
"@base-ui/react": "^1.0.0",
"@better-auth/stripe": "^1.4.10",
"@creem_io/better-auth": "^0.0.12",
"@dodopayments/better-auth": "^1.4.2",
"@hugeicons/core-free-icons": "^3.1.1",
"@hugeicons/react": "^1.1.4",
"@lemonsqueezy/lemonsqueezy.js": "^4.0.0",
"@plunk/node": "^3.0.3",
"@polar-sh/better-auth": "^1.6.3",
"@polar-sh/sdk": "^0.42.1",
"@react-email/components": "1.0.3",
"@sentry/nextjs": "^10",
"@t3-oss/env-nextjs": "^0.13.10",
"@tanstack/react-query": "^5.90.16",
"autumn-js": "^0.1.63",
"aws4fetch": "^1.0.20",
"better-auth": "^1.4.10",
"class-variance-authority": "^0.7.1",
"dodopayments": "^2.14.0",
"drizzle-orm": "^0.45.1",
"input-otp": "^1.4.2",
"lucide-react": "^0.562.0",
"next": "16.1.1",
"nodemailer": "^7.0.12",
"postgres": "^3.4.7",
"postmark": "^4.0.5",
"react": "19.2.3",
"react-dom": "19.2.3",
"react-icons": "^5.5.0",
"stripe": "^20.1.2",
"tailwind-merge": "^3.4.0",
"zod": "^4.3.5",
"zustand": "^5.0.9"
},
"devDependencies": {
"@biomejs/biome": "^2.3.11",
"@react-email/preview-server": "5.1.1",
"@tailwindcss/postcss": "^4",
"@types/node": "^20",
"@types/nodemailer": "^7.0.4",
"@types/react": "^19",
"@types/react-dom": "^19",
"cross-env": "^10.1.0",
"dotenv": "^17.2.3",
"drizzle-kit": "^0.31.8",
"react-email": "5.1.1",
"resend": "^6.6.0",
"tailwindcss": "^4",
"typescript": "^5"
}
}