-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 2.06 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": "blog",
"version": "1.0.0",
"private": true,
"type": "module",
"scripts": {
"clean": "find . -name node_modules -o -name .next -o -name .turbo -o -name dist -type d -prune | xargs rm -rf",
"format": "biome check --write . && biome format --write .",
"dev": "next dev",
"lint": "biome lint .",
"start": "next start",
"find-deadcode": "ts-prune | (! grep -v 'used in module')",
"build": "next build",
"clean:lock": "rm -f pnpm-lock.yaml",
"clean:resync": "pnpm clean:lock && pnpm install",
"bump:latest": "pnpm up -i -latest"
},
"dependencies": {
"@heroicons/react": "^2.2.0",
"@keystatic/core": "^0.5.42",
"@keystatic/next": "^5.0.1",
"@radix-ui/react-aspect-ratio": "^1.1.0",
"@radix-ui/react-avatar": "^1.1.1",
"@radix-ui/react-dropdown-menu": "^2.1.2",
"@radix-ui/react-hover-card": "^1.1.2",
"@radix-ui/react-navigation-menu": "^1.2.1",
"@radix-ui/react-popover": "^1.1.2",
"@radix-ui/react-separator": "^1.1.0",
"@radix-ui/react-slot": "^1.1.0",
"@t3-oss/env-nextjs": "^0.11.1",
"@vercel/og": "^0.6.4",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"dayjs": "^1.11.13",
"framer-motion": "^11.12.0",
"lucide-react": "^0.462.0",
"next": "^14.2.3",
"next-themes": "^0.4.3",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-icons": "^5.3.0",
"sharp": "^0.33.5",
"tailwind-merge": "^2.5.5",
"tailwindcss-animate": "^1.0.7",
"zod": "^3.23.8",
"zod-validation-error": "^3.4.0"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@tailwindcss/typography": "^0.5.15",
"@types/node": "^22.10.1",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@vercel/style-guide": "^6.0.0",
"autoprefixer": "^10.4.20",
"postcss": "^8.4.49",
"shiki": "^1.24.0",
"tailwindcss": "^3.4.15",
"ts-prune": "^0.10.3",
"typescript": "^5.7.2"
},
"engines": {
"node": ">=20.x",
"npm": ">=7.0.0",
"pnpm": ">=8.0.0"
},
"packageManager": "[email protected]+sha512.c8180b3fbe4e4bca02c94234717896b5529740a6cbadf19fa78254270403ea2f27d4e1d46a08a0f56c89b63dc8ebfd3ee53326da720273794e6200fcf0d184ab"
}