-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
114 lines (114 loc) · 3.44 KB
/
package.json
File metadata and controls
114 lines (114 loc) · 3.44 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "unkey",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "next dev",
"build": "next build",
"postbuild": "next-sitemap --config next-sitemap.config.cjs",
"start": "next start",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --check .",
"format:fix": "prettier --write .",
"typecheck": "next typegen && tsc --noEmit"
},
"packageManager": "pnpm@10.11.0",
"dependencies": {
"@c15t/nextjs": "^1.8.5",
"@hookform/resolvers": "^4.1.3",
"@number-flow/react": "^0.6.0",
"@radix-ui/react-accordion": "^1.2.10",
"@radix-ui/react-checkbox": "^1.3.1",
"@radix-ui/react-collapsible": "^1.1.10",
"@radix-ui/react-dialog": "^1.1.13",
"@radix-ui/react-label": "^2.1.6",
"@radix-ui/react-scroll-area": "^1.2.8",
"@radix-ui/react-select": "^2.2.4",
"@radix-ui/react-separator": "^1.1.6",
"@radix-ui/react-slot": "^1.2.2",
"@radix-ui/react-tabs": "^1.1.11",
"@radix-ui/react-tooltip": "^1.2.6",
"@react-hook/throttle": "^2.2.0",
"@react-three/drei": "^10.7.7",
"@react-three/fiber": "^9.5.0",
"@rive-app/react-canvas": "^4.27.0",
"@tailwindcss/postcss": "^4.1.7",
"@types/js-cookie": "^3.0.6",
"@vercel/analytics": "^2.0.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"copy-to-clipboard": "^3.3.3",
"date-fns": "^4.1.0",
"embla-carousel-auto-scroll": "^8.5.2",
"embla-carousel-react": "^8.5.2",
"github-slugger": "^2.0.0",
"glob": "^11.0.1",
"gray-matter": "^4.0.3",
"js-cookie": "^3.0.5",
"lucide-react": "^0.511.0",
"media-chrome": "^4.7.1",
"mermaid": "^11.12.3",
"motion": "^11.16.3",
"next": "16.1.6",
"next-mdx-remote": "^6.0.0",
"next-sitemap": "^4.2.3",
"next-themes": "^0.4.4",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"react-hook-form": "^7.54.2",
"react-paginate": "^8.2.0",
"remark": "^15.0.0",
"remark-gfm": "^4.0.1",
"rss": "^1.2.2",
"shiki": "3.19.0",
"slugify": "^1.6.6",
"tailwind-merge": "^3.3.0",
"three": "^0.183.1",
"unified": "^11.0.5",
"vaul": "^1.1.2",
"zod": "^3.24.2"
},
"devDependencies": {
"@eslint/js": "^9.26.0",
"@ianvs/prettier-plugin-sort-imports": "^4.4.0",
"@next/eslint-plugin-next": "^16.1.6",
"@shikijs/rehype": "^3.19.0",
"@shikijs/transformers": "^3.19.0",
"@tailwindcss/typography": "^0.5.16",
"@types/glob": "^8.1.0",
"@types/hast": "^3.0.4",
"@types/mdast": "^4.0.3",
"@types/node": "^20",
"@types/react": "^19.2.2",
"@types/react-dom": "^19.2.2",
"@types/rss": "^0.0.32",
"@types/three": "^0.183.1",
"@types/unist": "^3.0.3",
"@typescript-eslint/eslint-plugin": "^8.32.1",
"@typescript-eslint/parser": "^8.32.1",
"eslint": "^9.26.0",
"eslint-config-prettier": "^10.1.5",
"hast-util-to-jsx-runtime": "^2.3.6",
"image-size": "^2.0.2",
"mdast-util-mdx-jsx": "^3.2.0",
"mdast-util-mdxjs-esm": "^2.0.1",
"npm-to-yarn": "^3.0.1",
"postcss": "^8",
"postcss-nesting": "^13.0.1",
"prettier": "^3.5.3",
"prettier-plugin-tailwindcss": "^0.6.11",
"tailwindcss": "^4.1.7",
"tw-animate-css": "^1.3.0",
"typescript": "^5",
"typescript-eslint": "^8.32.1",
"unist-util-visit": "^5.0.0"
},
"browserslist": [
"last 2 Chrome versions",
"last 2 Firefox versions",
"last 2 Safari versions",
"last 2 Edge versions"
]
}