forked from nextjs/saas-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.11 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.11 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
{
"private": true,
"scripts": {
"dev": "next dev --turbopack",
"build": "next build",
"start": "next start",
"db:setup": "npx tsx lib/db/setup.ts",
"db:seed": "npx tsx lib/db/seed.ts",
"db:generate": "drizzle-kit generate",
"db:migrate": "drizzle-kit migrate",
"db:studio": "drizzle-kit studio"
},
"dependencies": {
"@tailwindcss/postcss": "4.1.7",
"@types/node": "^22.15.18",
"@types/react": "19.1.4",
"@types/react-dom": "19.1.5",
"autoprefixer": "^10.4.21",
"bcryptjs": "^3.0.2",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"dotenv": "^16.5.0",
"drizzle-kit": "^0.31.1",
"drizzle-orm": "^0.43.1",
"jose": "^6.0.11",
"lucide-react": "^0.511.0",
"next": "15.4.0-canary.47",
"postcss": "^8.5.3",
"postgres": "^3.4.5",
"radix-ui": "^1.4.2",
"react": "19.1.0",
"react-dom": "19.1.0",
"server-only": "^0.0.1",
"stripe": "^18.1.0",
"swr": "^2.3.3",
"tailwind-merge": "^3.3.0",
"tailwindcss": "4.1.7",
"tw-animate-css": "^1.3.0",
"typescript": "^5.8.3",
"zod": "^3.24.4"
}
}