-
-
Notifications
You must be signed in to change notification settings - Fork 155
/
Copy pathpackage.json
94 lines (94 loc) · 2.56 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
{
"name": "onur.dev",
"description": "My personal website.",
"author": {
"name": "Onur Şuyalçınkaya",
"url": "https://onur.dev"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"prettier": "prettier --write \"**/*.{html,js,jsx,json,md,mdx,mjs}\"",
"clear-cache": "rm -rf .next",
"unused": "next-unused",
"lint": "eslint .",
"lint:fix": "eslint --fix",
"outdated": "bun outdated"
},
"engines": {
"node": "20.x"
},
"dependencies": {
"@arcjet/ip": "^1.0.0-beta.2",
"@contentful/rich-text-react-renderer": "^16.0.1",
"@hookform/resolvers": "^4.0.0",
"@million/lint": "^1.0.14",
"@next/third-parties": "15.2.0",
"@radix-ui/react-dialog": "^1.1.6",
"@radix-ui/react-label": "^2.1.2",
"@radix-ui/react-select": "^2.1.6",
"@radix-ui/react-slot": "^1.1.2",
"@supabase/supabase-js": "^2.48.1",
"@tailwindcss/container-queries": "^0.1.1",
"@vercel/speed-insights": "^1.2.0",
"class-variance-authority": "^0.7.1",
"classix": "^2.2.2",
"embla-carousel-react": "^8.5.2",
"feed": "^4.2.2",
"framer-motion": "^12.4.7",
"geist": "^1.3.1",
"isbot": "^5.1.22",
"lru-cache": "^11.0.2",
"lucide-react": "^0.475.0",
"markdown-to-jsx": "^7.7.4",
"million": "^3.1.11",
"next": "15.2.0",
"react": "19.0.0",
"react-dom": "19.0.0",
"react-hook-form": "^7.54.2",
"react-intersection-observer": "^9.15.1",
"react-tweet": "^3.2.2",
"react-wrap-balancer": "^1.1.1",
"server-only": "^0.0.1",
"sonner": "^2.0.1",
"sugar-high": "^0.9.3",
"tailwind-merge": "^3.0.2",
"vaul": "^1.0.0",
"zod": "^3.24.2"
},
"devDependencies": {
"@eslint/compat": "^1.2.7",
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.20.0",
"@tailwindcss/postcss": "^4.0.9",
"eslint": "^9.20.1",
"eslint-config-next": "15.2.0",
"eslint-config-prettier": "^10.0.1",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-prettier": "^5.2.3",
"eslint-plugin-react": "^7.37.4",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-tailwindcss": "^3.18.0",
"globals": "^16.0.0",
"next-unused": "^0.0.6",
"postcss": "^8.5.3",
"prettier": "^3.5.1",
"prettier-plugin-tailwindcss": "^0.6.11",
"tailwindcss": "^4.0.9",
"tailwindcss-animate": "^1.0.7"
},
"overrides": {
"eslint": "$eslint"
},
"next-unused": {
"debug": true,
"include": [
"src"
],
"entrypoints": [
"src"
]
}
}