-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.04 KB
/
Copy pathpackage.json
File metadata and controls
41 lines (41 loc) · 1.04 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
{
"name": "umami-docs",
"version": "0.1.0",
"private": true,
"scripts": {
"build": "next build",
"dev": "rimraf .source && next dev --turbo",
"start": "rimraf .source && next start",
"postinstall": "fumadocs-mdx",
"lint": "biome lint .",
"format": "biome format --write .",
"check": "biome check ."
},
"lint-staged": {
"**/*.{js,jsx,ts,tsx,json,css}": [
"biome check --write --no-errors-on-unmatched --files-ignore-unknown=true"
]
},
"dependencies": {
"fumadocs-core": "16.0.7",
"fumadocs-mdx": "13.0.5",
"fumadocs-ui": "16.0.7",
"lucide-react": "^0.548.0",
"next": "16.0.7",
"react": "^19.2.1",
"react-dom": "^19.2.1"
},
"devDependencies": {
"@biomejs/biome": "^2.3.8",
"@tailwindcss/postcss": "^4.1.16",
"@types/mdx": "^2.0.13",
"@types/node": "24.9.1",
"@types/react": "^19.2.7",
"@types/react-dom": "^19.2.3",
"lint-staged": "^16.2.7",
"postcss": "^8.5.6",
"rimraf": "^6.1.0",
"tailwindcss": "^4.1.16",
"typescript": "^5.9.3"
}
}