-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
111 lines (111 loc) · 3.38 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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "next-supabase",
"description": "Next.js Blog with Supabase",
"version": "0.0.1",
"private": true,
"scripts": {
"dev": "next dev",
"debug": "NODE_OPTIONS='--inspect' next dev",
"build": "next build",
"start": "next start",
"pretty": "prettier --write .",
"ts": "tsc --noEmit",
"lint": "eslint . --ext .ts,.tsx -c .eslintrc.json --fix",
"gen:types": "pwd && source .env && supabase gen types typescript --project-id=$SUPABASE_PROJECT_ID > types/supabase.ts",
"prepare": "husky"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,tsx}": [
"npm run lint",
"npm run ts",
"npm run pretty"
]
},
"dependencies": {
"@hookform/resolvers": "^3.6.0",
"@mdxeditor/editor": "^3.4.2",
"@nextui-org/accordion": "^2.0.35",
"@nextui-org/avatar": "^2.0.29",
"@nextui-org/breadcrumbs": "^2.0.10",
"@nextui-org/button": "^2.0.34",
"@nextui-org/card": "^2.0.31",
"@nextui-org/chip": "^2.0.30",
"@nextui-org/dropdown": "^2.1.26",
"@nextui-org/image": "^2.0.29",
"@nextui-org/input": "^2.2.2",
"@nextui-org/link": "^2.0.32",
"@nextui-org/navbar": "^2.0.33",
"@nextui-org/pagination": "^2.0.33",
"@nextui-org/popover": "^2.1.24",
"@nextui-org/select": "^2.2.2",
"@nextui-org/snippet": "^2.0.38",
"@nextui-org/spinner": "^2.0.30",
"@nextui-org/switch": "^2.0.31",
"@nextui-org/system": "2.2.2",
"@nextui-org/tabs": "^2.0.35",
"@nextui-org/theme": "2.2.6",
"@react-aria/ssr": "^3.9.4",
"@react-aria/visually-hidden": "^3.8.12",
"@supabase/ssr": "^0.4.0",
"@supabase/supabase-js": "^2.44.4",
"@tailwindcss/typography": "^0.5.13",
"@typescript-eslint/eslint-plugin": "^7.13.1",
"autoprefixer": "10.4.19",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"framer-motion": "^11.2.11",
"intl-messageformat": "^10.5.14",
"lucide-react": "^0.395.0",
"next": "14.2.4",
"next-themes": "^0.3.0",
"nextjs-toploader": "^1.6.12",
"nuqs": "^1.17.4",
"postcss": "8.4.38",
"prettier-plugin-tailwindcss": "^0.6.5",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-hook-form": "^7.52.0",
"react-markdown": "^9.0.1",
"react-syntax-highlighter": "^15.5.0",
"rehype-raw": "^7.0.0",
"remark-gfm": "^4.0.0",
"server-only": "^0.0.1",
"sonner": "^1.5.0",
"swr": "^2.2.5",
"tailwind-merge": "^2.3.0",
"tailwind-variants": "^0.2.1",
"tailwindcss": "3.4.4",
"tailwindcss-animate": "^1.0.7",
"zod": "^3.23.8",
"zod-validation-error": "^3.3.0",
"zsa": "^0.5.0",
"zsa-react": "^0.2.1"
},
"devDependencies": {
"@next/eslint-plugin-next": "^14.2.4",
"@types/node": "20.14.6",
"@types/react": "18.3.3",
"@types/react-dom": "18.3.0",
"@types/react-syntax-highlighter": "^15.5.13",
"@typescript-eslint/parser": "^7.13.1",
"eslint": "^8",
"eslint-config-next": "14.2.4",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "^6.9.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.34.3",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-unused-imports": "^4.0.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.7",
"prettier": "^3.3.2",
"typescript": "^5.5.3"
}
}