-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.75 KB
/
package.json
File metadata and controls
90 lines (90 loc) · 2.75 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
84
85
86
87
88
89
90
{
"name": "eternalcodev3",
"version": "0.1.0",
"type": "module",
"private": true,
"scripts": {
"dev": "next dev",
"build": "bun run format && bun run lint && next build",
"start": "next start",
"check": "bun run format && bun run lint && bun run type-check",
"test": "bun run check",
"lint": "biome lint app components hooks lib content",
"lint:fix": "biome lint --write app components hooks lib content",
"format": "biome check app components hooks lib content",
"format:fix": "biome format --write app components hooks lib content",
"lint:biome": "biome lint app components hooks lib content",
"lint:biome:fix": "biome lint --write app components hooks lib content",
"ultracite:check": "bunx ultracite check",
"ultracite:fix": "bunx ultracite fix",
"type-check": "tsc --noEmit"
},
"dependencies": {
"@floating-ui/react": "^0.27.16",
"@iconify/react": "^6.0.2",
"@orama/orama": "^3.1.18",
"@radix-ui/react-tabs": "^1.1.13",
"@south-paw/typeface-minecraft": "^1.0.0",
"@tailwindcss/container-queries": "^0.1.1",
"@tailwindcss/line-clamp": "^0.4.4",
"@tailwindcss/typography": "^0.5.19",
"@takumi-rs/image-response": "^0.70.0",
"class-variance-authority": "^0.7.1",
"date-fns": "^4.1.0",
"focus-trap-react": "^12.0.0",
"framer-motion": "^12.29.0",
"gray-matter": "^4.0.3",
"lenis": "^1.3.17",
"lucide-react": "^0.577.0",
"minimessage-js": "^1.2.1",
"next-mdx-remote": "^6.0.0",
"next-sitemap": "^4.2.3",
"next-themes": "^0.4.6",
"nextjs-toploader": "^3.9.17",
"prismjs": "^1.30.0",
"react": "^19.2.3",
"react-colorful": "^5.6.1",
"react-dom": "^19.2.3",
"react-error-boundary": "^6.0.3",
"react-hot-toast": "^2.6.0",
"react-intersection-observer": "^10.0.0",
"rehype-prism-plus": "^2.0.1",
"rehype-slug": "^6.0.0",
"remark": "^15.0.1",
"remark-emoji": "^5.0.2",
"remark-gfm": "^4.0.1",
"sharp": "^0.34.5",
"strip-markdown": "^6.0.0",
"tailwind-merge": "^3.4.0",
"tsx": "^4.21.0",
"zod": "^4.3.5"
},
"devDependencies": {
"@biomejs/biome": "^2.3.11",
"@netlify/plugin-nextjs": "^5.15.5",
"@next/bundle-analyzer": "^16.1.1",
"@next/codemod": "^16.1.1",
"@tailwindcss/postcss": "^4.1.18",
"@total-typescript/ts-reset": "^0.6.1",
"@types/node": "^25.0.8",
"@types/react": "^19.2.8",
"@types/react-dom": "^19.2.3",
"cross-env": "^10.1.0",
"next": "^16.1.1",
"postcss": "^8.5.6",
"tailwindcss": "^4.1.18",
"typescript": "^5.9.3",
"ultracite": "^7.0.11"
},
"trustedDependencies": [
"tree-sitter-javascript"
],
"browserslist": [
"defaults",
"not ie 11",
"not op_mini all"
],
"overrides": {
"next": "$next"
}
}