-
Notifications
You must be signed in to change notification settings - Fork 57
Expand file tree
/
Copy pathpackage.json
More file actions
125 lines (125 loc) · 4.04 KB
/
package.json
File metadata and controls
125 lines (125 loc) · 4.04 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
122
123
124
125
{
"name": "better-saas",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"build": "next build",
"check": "biome check .",
"check:unsafe": "biome check --write --unsafe .",
"check:write": "biome check --write .",
"postinstall": "fumadocs-mdx",
"db:generate": "drizzle-kit generate",
"db:migrate": "drizzle-kit migrate",
"db:push": "drizzle-kit push",
"db:studio": "drizzle-kit studio",
"dev": "next dev",
"preview": "next build && next start",
"start": "next start",
"typecheck": "tsc --noEmit",
"admin:setup": "tsx scripts/setup-admin.ts",
"cf:dev": "wrangler dev --port 3000",
"cf:preview": "opennextjs-cloudflare build && wrangler dev --port 3000",
"cf:deploy": "NEXT_PUBLIC_APP_URL=https://cf.better-saas.org opennextjs-cloudflare build && opennextjs-cloudflare deploy",
"cf:upload": "opennextjs-cloudflare build && opennextjs-cloudflare upload",
"analyze": "ANALYZE=true pnpm build",
"analyze:server": "BUNDLE_ANALYZE=server pnpm build",
"analyze:browser": "BUNDLE_ANALYZE=browser pnpm build",
"size-check": "bundlesize"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.842.0",
"@aws-sdk/s3-request-presigner": "^3.842.0",
"@neondatabase/serverless": "^1.0.1",
"@opennextjs/cloudflare": "^1.16.3",
"@radix-ui/react-accordion": "^1.2.11",
"@radix-ui/react-alert-dialog": "^1.1.14",
"@radix-ui/react-avatar": "^1.1.10",
"@radix-ui/react-checkbox": "^1.3.2",
"@radix-ui/react-dialog": "^1.1.14",
"@radix-ui/react-dropdown-menu": "^2.1.15",
"@radix-ui/react-icons": "^1.3.2",
"@radix-ui/react-label": "^2.1.7",
"@radix-ui/react-navigation-menu": "^1.2.13",
"@radix-ui/react-progress": "^1.1.7",
"@radix-ui/react-scroll-area": "^1.2.9",
"@radix-ui/react-select": "^2.2.5",
"@radix-ui/react-separator": "^1.1.7",
"@radix-ui/react-slot": "^1.2.3",
"@radix-ui/react-switch": "^1.2.5",
"@radix-ui/react-tooltip": "^1.2.7",
"@t3-oss/env-nextjs": "^0.13.10",
"@tiptap/extension-code-block-lowlight": "^3.19.0",
"@tiptap/extension-heading": "^3.19.0",
"@tiptap/extension-highlight": "^3.19.0",
"@tiptap/extension-image": "^3.19.0",
"@tiptap/extension-link": "^3.19.0",
"@tiptap/extension-placeholder": "^3.19.0",
"@tiptap/extension-typography": "^3.19.0",
"@tiptap/pm": "^3.19.0",
"@tiptap/react": "^3.19.0",
"@tiptap/starter-kit": "^3.19.0",
"@types/mdx": "^2.0.13",
"@types/mime-types": "^3.0.1",
"@types/uuid": "^10.0.0",
"bcryptjs": "^3.0.2",
"better-auth": "^1.2.12",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"date-fns": "^4.1.0",
"dotenv": "^17.1.0",
"drizzle-orm": "^0.41.0",
"fumadocs-core": "^16.5.0",
"fumadocs-mdx": "^14.2.6",
"fumadocs-ui": "^16.5.0",
"jimp": "^0.22.12",
"lowlight": "^3.3.0",
"lucide-react": "^0.525.0",
"mime-types": "^3.0.1",
"next": "^16.1.6",
"next-intl": "^4.3.4",
"next-themes": "^0.4.6",
"postgres": "^3.4.4",
"radix-ui": "^1.4.3",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"react-dropzone": "^14.3.8",
"sonner": "^2.0.5",
"stripe": "^18.3.0",
"swr": "^2.3.4",
"tailwind-merge": "^3.3.1",
"uuid": "^11.1.0",
"zod": "^4.3.6"
},
"devDependencies": {
"@biomejs/biome": "2.0.6",
"@next/bundle-analyzer": "^16.0.0",
"@tailwindcss/postcss": "^4.0.15",
"@types/bcryptjs": "^3.0.0",
"@types/node": "^20.14.10",
"@types/react": "^19.1.0",
"@types/react-dom": "^19.1.0",
"bundlesize2": "^0.0.35",
"drizzle-kit": "^0.31.4",
"pino-pretty": "^13.0.0",
"postcss": "^8.5.3",
"tailwindcss": "^4.0.15",
"tsx": "^4.20.3",
"tw-animate-css": "^1.3.4",
"typescript": "^5.8.2",
"wrangler": "^4.63.0"
},
"packageManager": "pnpm@10.6.4",
"bundlesize": [
{
"path": ".next/static/chunks/*.js",
"maxSize": "200kb",
"compression": "gzip"
},
{
"path": ".next/static/css/*.css",
"maxSize": "50kb",
"compression": "gzip"
}
]
}