-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.86 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.86 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
{
"name": "creembase",
"description": "Next.js + Supabase + Creem SaaS Boilerplate",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint",
"format:write": "prettier --write .",
"setup:db": "bun run scripts/setup-db.ts",
"setup:demo-user": "bun run scripts/create-demo-user.ts",
"test:e2e": "playwright test"
},
"dependencies": {
"@base-ui/react": "^1.3.0",
"@creem_io/nextjs": "^0.6.0",
"@fontsource-variable/dm-sans": "^5.2.8",
"@fontsource/dm-mono": "^5.2.7",
"@supabase/ssr": "^0.9.0",
"@supabase/supabase-js": "^2.99.3",
"@tanstack/react-form": "^1.28.5",
"@tanstack/react-query": "^5.91.3",
"@vercel/analytics": "^2.0.1",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"creem_io": "^1.1.0",
"lucide-react": "^0.577.0",
"next": "16.2.1",
"next-themes": "^0.4.6",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"shadcn": "^4.1.0",
"sonner": "^2.0.7",
"tailwind-merge": "^3.5.0",
"tw-animate-css": "^1.4.0",
"usehooks-ts": "^3.1.1",
"zod": "^4.3.6"
},
"devDependencies": {
"@playwright/test": "^1.42.1",
"@tailwindcss/postcss": "^4.2.2",
"@trivago/prettier-plugin-sort-imports": "^6.0.2",
"@types/node": "^25.5.0",
"@types/pg": "^8.20.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"dotenv": "^17.3.1",
"eslint": "^9.39.4",
"eslint-config-next": "^16.2.1",
"pg": "^8.20.0",
"prettier": "^3.8.1",
"prettier-plugin-tailwindcss": "^0.7.2",
"tailwindcss": "^4.2.2",
"typescript": "^5.9.3"
}
}