-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.13 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.13 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
{
"name": "mikweb",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"fix": "biome check . --write",
"check:wiki": "bun run scripts/wiki-check.ts",
"check": "biome check . && tsc --noEmit -p tsconfig.check.json && bun run check:wiki"
},
"dependencies": {
"@otplib/core": "^13.4.0",
"@vercel/analytics": "^2.0.1",
"framer-motion": "^12.39.0",
"lucide-react": "^0.575.0",
"mcp-handler": "^1.1.0",
"next": "16.1.6",
"next-intl": "^4.12.0",
"next-themes": "^0.4.6",
"react": "19.2.3",
"react-dom": "19.2.3",
"react-infinite-scroll-component": "^6.1.1",
"react-markdown": "^10.1.0",
"react-masonry-css": "^1.0.16",
"rehype-raw": "^7.0.0",
"rehype-sanitize": "^6.0.0",
"rehype-slug": "^6.0.0",
"remark-gfm": "^4.0.1"
},
"devDependencies": {
"@biomejs/biome": "^2.4.15",
"@tailwindcss/postcss": "^4.3.0",
"@types/node": "^20.19.41",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"tailwindcss": "^4.3.0",
"typescript": "^5.9.3"
}
}