-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
96 lines (96 loc) · 2.86 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
90
91
92
93
94
95
96
{
"name": "startstack.io",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev --turbo",
"build": "next build",
"vercel-build": "tsx drizzle/migrate.ts && next build",
"start": "next start",
"lint": "next lint",
"db:migrate": "tsx drizzle/migrate.ts",
"db:studio": "drizzle-kit studio",
"db:generate": "drizzle-kit generate",
"stripe:listen": "stripe listen --forward-to localhost:3000/api/webhooks/stripe",
"stripe:login": "stripe login",
"grant:admin:role": "tsx drizzle/grant-admin-role.ts",
"typecheck": "tsc --noEmit",
"format:write": "prettier --write \"**/*.{ts,tsx,mdx}\" --cache",
"format:check": "prettier --check \"**/*.{ts,tsx,mdx}\" --cache",
"preview": "next build && next start"
},
"dependencies": {
"@auth/core": "^0.34.1",
"@auth/drizzle-adapter": "^1.4.1",
"@radix-ui/react-collapsible": "1.1.0",
"@radix-ui/react-dialog": "1.1.1",
"@radix-ui/react-dropdown-menu": "2.1.1",
"@radix-ui/react-slot": "1.1.0",
"@radix-ui/react-tooltip": "1.1.1",
"@sentry/nextjs": "^8.35.0",
"@stripe/react-stripe-js": "^2.8.0",
"@stripe/stripe-js": "^4.3.0",
"@vercel/postgres": "^0.9.0",
"babel-plugin-react-compiler": "19.0.0-beta-37ed2a7-20241206",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"dotenv": "^16.4.5",
"drizzle-orm": "^0.33.0",
"import-in-the-middle": "^1.11.2",
"lucide-react": "^0.436.0",
"nanoid": "^5.0.7",
"next": "15.1.0",
"next-auth": "5.0.0-beta.25",
"next-themes": "^0.3.0",
"posthog-js": "^1.161.5",
"posthog-node": "^4.2.0",
"react": "19.0.0",
"react-dom": "19.0.0",
"react-error-boundary": "^4.0.13",
"react-is": "19.0.0",
"recharts": "2.13.0-alpha.5",
"require-in-the-middle": "^7.4.0",
"resend": "^4.0.0",
"server-only": "^0.0.1",
"stripe": "^16.8.0",
"tailwind-merge": "^2.4.0",
"tailwindcss-animate": "^1.0.7",
"zod": "^3.23.8"
},
"devDependencies": {
"@ianvs/prettier-plugin-sort-imports": "^4.3.1",
"@types/node": "^20.12.13",
"@types/react": "19.0.1",
"@types/react-dom": "19.0.2",
"drizzle-kit": "^0.24.0",
"eslint": "^9.12.0",
"eslint-config-next": "15.1.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-tailwindcss": "^3.17.0",
"postcss": "^8",
"prettier": "^3.3.3",
"prettier-plugin-tailwindcss": "^0.6.5",
"tailwindcss": "^3.4.3",
"tsx": "^4.15.1",
"typescript": "^5"
},
"pnpm": {
"overrides": {
"@types/node": "^20.12.13",
"@types/react": "19.0.1",
"@types/react-dom": "19.0.2",
"react-is": "$react-is"
},
"peerDependencyRules": {
"allowedVersions": {
"next": "15.1.0",
"react": "19.0.0",
"react-dom": "19.0.0"
},
"allowAny": [
"@types/react",
"@types/react-dom"
]
}
}
}