forked from suyalcinkaya/onur.dev
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 1.74 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
{
"name": "onur.dev",
"description": "My personal website.",
"author": {
"name": "Onur Şuyalçınkaya",
"url": "https://onur.dev"
},
"license": "MIT",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"prettier": "prettier --write \"**/*.{html,js,json,md,mdx,mjs}\"",
"clear-cache": "rm -rf .next",
"unused": "next-unused",
"lint": "eslint src --ext js"
},
"engines": {
"node": "18.x"
},
"dependencies": {
"@contentful/rich-text-react-renderer": "^15.18.0",
"@radix-ui/react-slot": "^1.0.2",
"@supabase/supabase-js": "^2.37.0",
"@tailwindcss/container-queries": "^0.1.1",
"class-variance-authority": "^0.7.0",
"classix": "^2.1.34",
"cssnano": "^6.0.1",
"eslint-config-next": "^14.0.2",
"feed": "^4.2.2",
"framer-motion": "^10.16.4",
"geist": "^1.0.0",
"lucide-react": "^0.284.0",
"markdown-to-jsx": "^7.3.2",
"next": "^14.0.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-intersection-observer": "^9.5.2",
"react-tweet": "^3.1.1",
"react-wrap-balancer": "^1.1.0",
"sugar-high": "^0.5.2",
"tailwind-merge": "^1.14.0",
"tailwindcss-animate": "^1.0.7",
"vaul": "^0.7.5"
},
"devDependencies": {
"autoprefixer": "^10.4.16",
"eslint": "^8.50.0",
"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",
"next-unused": "^0.0.6",
"postcss": "^8.4.31",
"prettier": "^3.0.3",
"prettier-plugin-tailwindcss": "^0.5.4",
"tailwindcss": "^3.3.3"
},
"next-unused": {
"debug": true,
"include": [
"src"
],
"entrypoints": [
"src"
]
}
}