-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.6 KB
/
package.json
File metadata and controls
89 lines (89 loc) · 2.6 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
{
"name": "next-supabase",
"description": "Next.js Blog with Supabase",
"version": "0.0.9",
"private": true,
"type": "module",
"scripts": {
"dev": "next dev --turbopack",
"debug": "NODE_OPTIONS='--inspect' next dev",
"build": "next build",
"start": "next start",
"gen:types": "pwd && source .env && supabase gen types typescript --project-id=$SUPABASE_PROJECT_ID > types/supabase.ts",
"eslint": "eslint . --fix",
"type:check": "tsc --noEmit",
"type:build": "tsc -b",
"pretty": "prettier --write '**/*.{ts,tsx}'",
"prepare": "husky",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui"
},
"dependencies": {
"@heroui/react": "^2.8.8",
"@heroui/theme": "^2.4.26",
"@hookform/resolvers": "5.2.2",
"@mdxeditor/editor": "3.52.3",
"@react-aria/ssr": "3.9.10",
"@react-aria/visually-hidden": "3.8.30",
"@supabase/auth-js": "2.95.3",
"@supabase/postgrest-js": "2.95.3",
"@supabase/ssr": "0.8.0",
"@supabase/supabase-js": "2.95.3",
"clsx": "2.1.1",
"lucide-react": "0.563.0",
"motion": "12.34.0",
"next": "16.1.6",
"next-themes": "0.4.6",
"nextjs-toploader": "3.9.17",
"nuqs": "2.8.8",
"postcss": "8.5.6",
"react": "19.2.4",
"react-dom": "19.2.4",
"react-hook-form": "7.71.1",
"react-markdown": "10.1.0",
"react-syntax-highlighter": "16.1.0",
"rehype-raw": "7.0.0",
"remark-gfm": "4.0.1",
"server-only": "0.0.1",
"sonner": "2.0.7",
"swr": "2.4.0",
"tailwind-merge": "3.4.0",
"tailwind-variants": "3.2.2",
"tailwindcss-animate": "1.0.7",
"zod": "3.25.76",
"zod-validation-error": "5.0.0",
"zsa": "0.6.0",
"zsa-react": "0.2.3"
},
"devDependencies": {
"@next/eslint-plugin-next": "16.1.6",
"@playwright/test": "1.58.2",
"@tailwindcss/postcss": "4.1.18",
"@tailwindcss/typography": "0.5.19",
"@types/node": "25.2.3",
"@types/react": "19.2.13",
"@types/react-dom": "19.2.3",
"@types/react-syntax-highlighter": "15.5.13",
"@typescript-eslint/eslint-plugin": "8.55.0",
"@typescript-eslint/parser": "8.55.0",
"dotenv": "17.2.4",
"eslint": "9.39.2",
"eslint-plugin-prettier": "5.5.5",
"eslint-plugin-react": "7.37.5",
"eslint-plugin-react-hooks": "7.0.1",
"eslint-plugin-simple-import-sort": "12.1.1",
"husky": "9.1.7",
"prettier": "3.8.1",
"prettier-plugin-tailwindcss": "0.7.2",
"tailwindcss": "4.1.18",
"typescript": "5.9.3"
},
"pnpm": {
"onlyBuiltDependencies": [
"@heroui/shared-utils",
"es5-ext",
"sharp",
"unrs-resolver"
]
}
}