-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 2.03 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 2.03 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
{
"name": "flowgatedoc",
"version": "0.0.0",
"private": true,
"scripts": {
"build": "next build",
"dev": "next dev",
"start": "next start",
"types:check": "fumadocs-mdx && next typegen && tsc --noEmit",
"postinstall": "fumadocs-mdx",
"lint": "oxlint --config .oxlintrc.json",
"lint:links": "bun scripts/lint.ts",
"format": "oxfmt .",
"format:check": "oxfmt --check .",
"check": "ultracite check",
"fix": "ultracite fix",
"prepare": "husky",
"preview": "next build && opennextjs-cloudflare build && opennextjs-cloudflare preview",
"deploy": "next build && opennextjs-cloudflare build && opennextjs-cloudflare deploy",
"upload": "next build && opennextjs-cloudflare build && opennextjs-cloudflare upload",
"cf-typegen": "wrangler types --env-interface CloudflareEnv cloudflare-env.d.ts"
},
"dependencies": {
"@opennextjs/cloudflare": "^1.17.1",
"@orama/orama": "^3.1.18",
"@orama/tokenizers": "^3.1.18",
"@radix-ui/react-separator": "^1.1.8",
"@radix-ui/react-slot": "^1.2.4",
"@radix-ui/react-tabs": "^1.1.13",
"@radix-ui/react-tooltip": "^1.2.8",
"@radix-ui/react-visually-hidden": "^1.2.4",
"@takumi-rs/image-response": "^0.68.17",
"fumadocs-core": "16.6.5",
"fumadocs-mdx": "14.2.8",
"fumadocs-ui": "16.6.5",
"lucide-react": "^0.575.0",
"next": "16.1.6",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"tailwind-merge": "^3.4.1",
"wrangler": "^4.70.0"
},
"devDependencies": {
"@tailwindcss/postcss": "^4.2.1",
"@types/bun": "^1.3.10",
"@types/mdx": "^2.0.13",
"@types/node": "^25.2.3",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"husky": "^9.1.7",
"lint-staged": "^16.3.2",
"next-validate-link": "^1.6.4",
"oxfmt": "^0.36.0",
"oxlint": "^1.51.0",
"postcss": "^8.5.6",
"tailwindcss": "^4.2.1",
"typescript": "^5.9.3",
"ultracite": "7.2.4"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,json,jsonc,css,scss,md,mdx}": [
"bun x ultracite fix"
]
}
}