forked from nextjs/saas-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
89 lines (89 loc) · 2.76 KB
/
package.json
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
{
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"test": "npx playwright test",
"lint": "next lint",
"db:setup": "npx tsx lib/db/setup.ts",
"db:seed": "npx tsx lib/db/seed.ts",
"db:generate": "drizzle-kit generate",
"db:migrate": "npx tsx lib/db/migrate.ts",
"db:studio": "drizzle-kit studio",
"email": "email dev --port 3001"
},
"dependencies": {
"@next/third-parties": "15.0.1",
"@radix-ui/react-alert-dialog": "^1.1.2",
"@radix-ui/react-avatar": "^1.1.1",
"@radix-ui/react-checkbox": "^1.1.2",
"@radix-ui/react-dialog": "^1.1.2",
"@radix-ui/react-dropdown-menu": "^2.1.2",
"@radix-ui/react-icons": "^1.3.2",
"@radix-ui/react-label": "^2.1.0",
"@radix-ui/react-progress": "^1.1.0",
"@radix-ui/react-radio-group": "^1.2.1",
"@radix-ui/react-scroll-area": "^1.2.1",
"@radix-ui/react-select": "^2.1.2",
"@radix-ui/react-separator": "^1.1.0",
"@radix-ui/react-slot": "^1.1.0",
"@radix-ui/react-switch": "^1.1.1",
"@radix-ui/react-tabs": "^1.1.1",
"@radix-ui/react-toast": "^1.2.2",
"@react-email/components": "^0.0.25",
"@sentry/nextjs": "^8.43.0",
"@types/bcryptjs": "^2.4.6",
"@types/node": "^22.10.2",
"@types/pg": "^8.11.10",
"@types/react": "npm:[email protected]",
"@types/react-dom": "npm:[email protected]",
"@vercel/speed-insights": "^1.1.0",
"autoprefixer": "^10.4.20",
"bcryptjs": "^2.4.3",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"date-fns": "^4.1.0",
"db-migrate-pg": "^1.5.2",
"dotenv": "^16.4.7",
"drizzle-orm": "^0.33.0",
"gray-matter": "^4.0.3",
"jose": "^5.9.6",
"lucide-react": "^0.446.0",
"next": "^15.1.0",
"next-mdx-remote": "^5.0.0",
"pg": "^8.13.1",
"postcss": "^8.4.49",
"postgres": "^3.4.5",
"react": "19.0.0-rc-69d4b800-20241021",
"react-dom": "19.0.0-rc-69d4b800-20241021",
"react-is": "19.0.0-rc-69d4b800-20241021",
"recharts": "2.13.0-alpha.5",
"remark": "^15.0.1",
"remark-html": "^16.0.1",
"resend": "^4.0.1",
"responsive-react-email": "^0.0.5",
"server-only": "^0.0.1",
"stripe": "^16.12.0",
"tailwind-merge": "^2.5.5",
"tailwindcss": "^3.4.16",
"tailwindcss-animate": "^1.0.7",
"tailwindcss-react-aria-components": "1.1.5",
"typescript": "^5.7.2",
"zod": "^3.24.1"
},
"devDependencies": {
"@playwright/test": "^1.49.1",
"drizzle-kit": "^0.24.2",
"eslint": "^8.57.1",
"eslint-config-next": "15.0.1",
"react-email": "3.0.1"
},
"pnpm": {
"overrides": {
"react-is": "$react-is",
"@types/react": "npm:[email protected]",
"@types/react-dom": "npm:[email protected]"
}
}
}