-
-
Notifications
You must be signed in to change notification settings - Fork 293
Expand file tree
/
Copy pathpackage.json
More file actions
101 lines (101 loc) · 2.87 KB
/
Copy pathpackage.json
File metadata and controls
101 lines (101 loc) · 2.87 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
{
"name": "docs",
"version": "0.0.0-internal",
"private": true,
"type": "module",
"author": {
"name": "François Best",
"email": "contact@francoisbest.com",
"url": "https://francoisbest.com"
},
"repository": {
"type": "git",
"url": "git+https://github.com/47ng/nuqs.git",
"directory": "packages/docs"
},
"scripts": {
"dev": "next dev",
"build": "pnpm run build:registry && pnpm run build:next",
"build:next": "next build",
"build:registry": "./src/registry/assemble.ts && shadcn build",
"start": "next start",
"postinstall": "fumadocs-mdx",
"pretest": "fumadocs-mdx && next typegen",
"test": "tsc"
},
"dependencies": {
"@databuddy/sdk": "^2.2.12",
"@faker-js/faker": "^10.1.0",
"@headlessui/react": "2.2.9",
"@headlessui/tailwindcss": "^0.2.2",
"@icons-pack/react-simple-icons": "^13.7.0",
"@number-flow/react": "^0.5.10",
"@radix-ui/react-checkbox": "^1.3.3",
"@radix-ui/react-label": "^2.1.7",
"@radix-ui/react-popover": "^1.1.15",
"@radix-ui/react-select": "^2.2.6",
"@radix-ui/react-separator": "^1.1.7",
"@radix-ui/react-slider": "^1.3.6",
"@radix-ui/react-slot": "^1.2.3",
"@radix-ui/react-switch": "^1.2.6",
"@radix-ui/react-tabs": "^1.1.13",
"@radix-ui/react-toggle": "^1.1.10",
"@radix-ui/react-toggle-group": "^1.1.11",
"@radix-ui/react-tooltip": "^1.2.8",
"@sentry/nextjs": "^10.27.0",
"@tailwindcss/container-queries": "^0.1.1",
"@tailwindcss/postcss": "^4.1.12",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"dayjs": "^1.11.13",
"effect": "^3.17.8",
"fumadocs-core": "^16.0.4",
"fumadocs-mdx": "^13.0.2",
"fumadocs-ui": "^16.0.4",
"lucide-react": "^0.548.0",
"next": "16.0.7",
"nuqs": "workspace:*",
"react": "catalog:react19",
"react-dom": "catalog:react19",
"recharts": "3.3.0",
"registry": "workspace:*",
"remark-smartypants": "^3.0.2",
"res": "workspace:*",
"server-only": "^0.0.1",
"tailwind-merge": "^3.3.1",
"tailwindcss": "^4.1.12",
"tailwindcss-animate": "^1.0.7",
"zod": "^4.1.5"
},
"devDependencies": {
"@shikijs/transformers": "^3.11.0",
"@types/mdx": "^2.0.13",
"@types/node": "^24.3.0",
"@types/react": "catalog:react19",
"@types/react-dom": "catalog:react19",
"hast-util-to-jsx-runtime": "^2.3.6",
"import-in-the-middle": "^2.0.0",
"postcss": "^8.5.6",
"prettier-plugin-tailwindcss": "^0.7.1",
"require-in-the-middle": "^8.0.1",
"shadcn": "^3.4.2",
"shiki": "^3.11.0",
"typescript": "^5.9.2"
},
"postcss": {
"plugins": {
"@tailwindcss/postcss": {}
}
},
"prettier": {
"arrowParens": "avoid",
"semi": false,
"singleQuote": true,
"tabWidth": 2,
"trailingComma": "none",
"useTabs": false,
"plugins": [
"prettier-plugin-tailwindcss"
]
}
}