-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 1.82 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
69
{
"name": "snipnest",
"private": true,
"version": "2.4.0",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"format-and-lint": "biome check .",
"format-and-lint:fix": "biome check . --write",
"validate-snippets": "tsx scripts/validate-snippets.ts",
"prepare": "husky"
},
"dependencies": {
"@mdx-js/loader": "^3.1.0",
"@mdx-js/react": "^3.1.0",
"@next/mdx": "^15.1.3",
"@radix-ui/react-dialog": "^1.1.4",
"@radix-ui/react-icons": "^1.3.2",
"@radix-ui/react-popover": "^1.1.4",
"@radix-ui/react-slot": "^1.1.1",
"@upstash/ratelimit": "^2.0.5",
"@upstash/redis": "^1.34.3",
"@vercel/analytics": "^1.4.1",
"@vercel/functions": "^1.5.2",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cmdk": "^1.0.4",
"devicons-react": "^1.4.0",
"fuzzysort": "^3.1.0",
"geist": "^1.3.1",
"lucide-react": "^0.469.0",
"next": "15.1.3",
"next-themes": "^0.4.4",
"react": "19.0.0",
"react-dom": "19.0.0",
"react-to-string": "^0.1.1",
"rehype-pretty-code": "^0.14.0",
"rehype-stringify": "^10.0.1",
"remark-parse": "^11.0.0",
"remark-rehype": "^11.1.1",
"shiki": "^1.26.1",
"shiki-transformer-color-highlight": "^0.2.0",
"tailwind-merge": "^2.6.0",
"tailwindcss-animate": "^1.0.7",
"unified": "^11.0.5",
"vaul": "^1.1.2"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@types/mdx": "^2.0.13",
"@types/node": "^20",
"@types/react": "19.0.2",
"@types/react-dom": "19.0.2",
"husky": "^9.1.7",
"lint-staged": "^15.3.0",
"mdx": "^0.3.1",
"postcss": "^8",
"tailwindcss": "^3.4.1",
"tsx": "^4.19.2",
"typescript": "^5"
},
"pnpm": {
"overrides": {
"@types/react": "19.0.2",
"@types/react-dom": "19.0.2"
}
}
}