This repository was archived by the owner on Dec 20, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.83 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.83 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
{
"name": "notion-blog-react",
"description": "A Notion Blog powered by Next.js",
"version": "2.1.0",
"private": true,
"author": "Harry Yep <git@hode.co.uk>",
"homepage": "https://github.com/okisdev/Notion-Blog-React",
"license": "MIT",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"clean": "find . -name node_modules -o -name .next -o -name .turbo -o -name dist -type d -prune | xargs rm -rf",
"biome:check": "biome check",
"biome:format": "biome format --write",
"biome:lint": "biome lint --write",
"biome:fix": "biome format --write && biome lint --write",
"deps:check": "bunx npm-check-updates",
"deps:update": "bunx npm-check-updates -u && bun install"
},
"dependencies": {
"@notionhq/client": "^5.6.0",
"@radix-ui/react-slot": "^1.2.4",
"@t3-oss/env-nextjs": "^0.13.10",
"@upstash/redis": "^1.35.8",
"@vercel/analytics": "^1.6.1",
"@vercel/speed-insights": "^1.3.1",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"date-fns": "^4.1.0",
"lucide-react": "^0.561.0",
"next": "16.0.10",
"next-mdx-remote": "^5.0.0",
"next-nprogress-bar": "^2.4.7",
"next-themes": "^0.4.6",
"next-view-transitions": "^0.3.5",
"react": "^19.2.3",
"react-dom": "^19.2.3",
"react-scan": "^0.4.3",
"sonner": "^2.0.7",
"sugar-high": "^0.9.5",
"tailwind-merge": "^3.4.0",
"tw-animate-css": "^1.4.0",
"zod": "^4.2.1"
},
"devDependencies": {
"@biomejs/biome": "^2.3.9",
"@tailwindcss/postcss": "^4",
"@types/node": "^25",
"@types/react": "^19",
"@types/react-dom": "^19",
"babel-plugin-react-compiler": "^1.0.0",
"tailwindcss": "^4",
"turbo": "^2.6.3",
"typescript": "^5",
"ultracite": "^6.4.1"
},
"packageManager": "bun@1.3.4"
}