-
-
Notifications
You must be signed in to change notification settings - Fork 140
/
package.json
81 lines (81 loc) · 2.21 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
{
"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 . --ext .js,.jsx"
},
"engines": {
"node": "18.x"
},
"dependencies": {
"@contentful/rich-text-react-renderer": "^15.18.0",
"@hookform/resolvers": "^3.3.4",
"@next/third-parties": "^14.1.4",
"@radix-ui/react-dialog": "^1.0.5",
"@radix-ui/react-label": "^2.0.2",
"@radix-ui/react-select": "^2.0.0",
"@radix-ui/react-slot": "^1.0.2",
"@supabase/supabase-js": "^2.39.8",
"@tailwindcss/container-queries": "^0.1.1",
"@vercel/speed-insights": "^1.0.10",
"class-variance-authority": "^0.7.0",
"classix": "^2.1.36",
"embla-carousel-react": "^8.1.3",
"feed": "^4.2.2",
"framer-motion": "^11.0.0",
"geist": "^1.2.2",
"lucide-react": "^0.354.0",
"markdown-to-jsx": "^7.3.2",
"million": "^3.0.6",
"next": "^14.2.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hook-form": "^7.51.0",
"react-intersection-observer": "^9.8.1",
"react-tweet": "^3.2.0",
"react-wrap-balancer": "^1.1.0",
"server-only": "^0.0.1",
"sonner": "^1.4.3",
"sugar-high": "^0.6.0",
"tailwind-merge": "^2.2.1",
"vaul": "^1.0.0",
"zod": "^3.22.4"
},
"devDependencies": {
"autoprefixer": "^10.4.16",
"cssnano": "^6.1.1",
"cssnano-preset-advanced": "^6.1.1",
"eslint": "^8.50.0",
"eslint-config-next": "^14.2.1",
"eslint-config-prettier": "^9.0.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-tailwindcss": "^3.15.1",
"next-unused": "^0.0.6",
"postcss": "^8.4.31",
"prettier": "^3.0.3",
"prettier-plugin-tailwindcss": "^0.5.11",
"tailwindcss": "^3.4.1",
"tailwindcss-animate": "^1.0.7"
},
"next-unused": {
"debug": true,
"include": [
"src"
],
"entrypoints": [
"src"
]
}
}