-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.42 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 2.42 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "portfolio-next",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev --turbopack",
"build": "next build",
"preview": "opennextjs-cloudflare build && opennextjs-cloudflare preview",
"deploy": "opennextjs-cloudflare build && opennextjs-cloudflare deploy",
"upload": "opennextjs-cloudflare build && opennextjs-cloudflare upload",
"cf-typegen": "wrangler types --env-interface CloudflareEnv cloudflare-env.d.ts",
"start": "next start",
"lint": "eslint .",
"start:prod": "next start -p 3001",
"prepare": "husky"
},
"dependencies": {
"@base-ui/react": "^1.3.0",
"@mdx-js/loader": "^3.1.0",
"@mdx-js/react": "^3.1.0",
"@radix-ui/react-aspect-ratio": "^1.1.7",
"@radix-ui/react-dialog": "^1.1.14",
"@radix-ui/react-dropdown-menu": "^2.1.15",
"@radix-ui/react-slot": "^1.2.3",
"@radix-ui/react-tabs": "^1.1.12",
"@types/mdx": "^2.0.13",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"feed": "^5.2.0",
"gray-matter": "^4.0.3",
"lucide-react": "^0.523.0",
"next": "15.1.11",
"next-mdx-remote": "^5.0.0",
"next-themes": "^0.4.6",
"radix-ui": "^1.4.3",
"react": "19.2.3",
"react-dom": "19.2.3",
"rehype-slug": "^6.0.0",
"rehype-unwrap-images": "^1.0.0",
"remark": "^15.0.1",
"remark-gfm": "^4.0.1",
"remark-html": "^16.0.1",
"sonner": "^2.0.6",
"tailwind-merge": "^3.3.1",
"vaul": "^1.1.2",
"zustand": "^5.0.10"
},
"devDependencies": {
"@biomejs/biome": "2.0.6",
"@catppuccin/tailwindcss": "^1.0.0",
"@commitlint/cli": "^20.4.1",
"@commitlint/config-conventional": "^20.4.1",
"@opennextjs/aws": "^3.9.7",
"@opennextjs/cloudflare": "^1.14.8",
"@tailwindcss/postcss": "^4",
"@types/node": "^20",
"@types/react": "19.2.7",
"@types/react-dom": "19.2.3",
"devmoji": "^2.3.0",
"esbuild": "^0.27.2",
"eslint": "^9.39.2",
"eslint-config-next": "15.1.11",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"open-next": "^3.1.3",
"tailwindcss": "^4",
"tw-animate-css": "^1.3.4",
"typescript": "^5",
"unist-util-visit": "^5.1.0",
"wrangler": "^4.58.0"
},
"pnpm": {
"overrides": {
"@types/react": "19.2.7",
"@types/react-dom": "19.2.3"
}
},
"lint-staged": {
"*.{js,ts,cjs,mjs,d.cts,d.mts,jsx,tsx,json,jsonc}": [
"biome check --write --no-errors-on-unmatched"
]
}
}