-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) 路 1.5 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 loc) 路 1.5 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
{
"name": "gitcoders",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint",
"db:generate": "drizzle-kit generate",
"db:migrate": "drizzle-kit migrate"
},
"dependencies": {
"@base-ui-components/react": "^1.0.0-beta.3",
"@headlessui/react": "^2.2.9",
"@heroicons/react": "^2.2.0",
"@icons-pack/react-simple-icons": "^13.7.0",
"@mdx-js/loader": "^3.1.1",
"@mdx-js/react": "^3.1.1",
"@next/mdx": "^15.5.4",
"@supabase/ssr": "^0.7.0",
"@supabase/supabase-js": "^2.58.0",
"@tailwindcss/typography": "^0.5.19",
"@tanstack/react-query": "^5.90.2",
"@types/mdx": "^2.0.13",
"cloudinary": "^2.7.0",
"clsx": "^2.1.1",
"dotenv": "^17.2.2",
"drizzle-orm": "^0.44.5",
"motion": "^12.23.16",
"next": "15.5.3",
"next-themes": "^0.4.6",
"postgres": "^3.4.7",
"react": "19.1.0",
"react-dom": "19.1.0",
"react-icons": "^5.5.0",
"rehype-prism-plus": "^2.0.1",
"sonner": "^2.0.7",
"tailwind-merge": "^3.3.1",
"zod": "^4.1.11"
},
"devDependencies": {
"@biomejs/biome": "2.2.4",
"@eslint/eslintrc": "^3",
"@tailwindcss/postcss": "^4",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"drizzle-kit": "^0.31.5",
"eslint": "^9",
"eslint-config-next": "15.5.3",
"prettier": "^3.6.2",
"prettier-plugin-tailwindcss": "^0.6.14",
"tailwindcss": "^4",
"typescript": "^5"
},
"prettier": {
"plugins": [
"prettier-plugin-tailwindcss"
]
}
}