-
-
Notifications
You must be signed in to change notification settings - Fork 293
Expand file tree
/
Copy pathpackage.json
More file actions
105 lines (105 loc) · 3.07 KB
/
Copy pathpackage.json
File metadata and controls
105 lines (105 loc) · 3.07 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
102
103
104
105
{
"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",
"gen:schema": "./src/schemas/changelog-dto.gen.ts",
"start": "next start",
"postinstall": "fumadocs-mdx",
"test": "fumadocs-mdx && next typegen && fumadocs-mdx && tsc && vitest run"
},
"dependencies": {
"@databuddy/sdk": "^2.6.0",
"@faker-js/faker": "^10.5.0",
"@headlessui/tailwindcss": "^0.2.2",
"@icons-pack/react-simple-icons": "^13.13.0",
"@number-flow/react": "^0.6.1",
"@radix-ui/react-checkbox": "^1.3.7",
"@radix-ui/react-context-menu": "^2.3.3",
"@radix-ui/react-label": "^2.1.11",
"@radix-ui/react-popover": "^1.1.19",
"@radix-ui/react-select": "^2.3.3",
"@radix-ui/react-separator": "^1.1.11",
"@radix-ui/react-slider": "^1.4.3",
"@radix-ui/react-slot": "^1.3.0",
"@radix-ui/react-tabs": "^1.1.17",
"@radix-ui/react-toggle": "^1.1.14",
"@radix-ui/react-toggle-group": "^1.1.15",
"@radix-ui/react-tooltip": "^1.2.12",
"@tailwindcss/container-queries": "^0.1.1",
"@tailwindcss/postcss": "^4.3.3",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"date-fns": "^4.4.0",
"dayjs": "^1.11.21",
"effect": "^3.22.0",
"fumadocs-core": "16.11.5",
"fumadocs-mdx": "15.2.0",
"fumadocs-ui": "16.11.5",
"lucide-react": "^0.563.0",
"mdast-util-mdx-jsx": "^3.2.0",
"mdast-util-to-markdown": "^2.1.2",
"next": "catalog:next",
"nuqs": "workspace:*",
"radix-ui": "^1.6.2",
"react": "catalog:react19",
"react-dom": "catalog:react19",
"recharts": "3.9.2",
"remark-smartypants": "^3.0.2",
"scripts": "workspace:*",
"server-only": "^0.0.1",
"tailwind-merge": "^3.6.0",
"tailwindcss": "^4.3.3",
"tailwindcss-animate": "^1.0.7",
"zod": "^4.4.3"
},
"devDependencies": {
"@shikijs/transformers": "^4.3.1",
"@types/mdast": "^4.0.4",
"@types/mdx": "^2.0.14",
"@types/node": "^24.13.3",
"@types/react": "catalog:react19",
"@types/react-dom": "catalog:react19",
"hast-util-to-jsx-runtime": "^2.3.6",
"msw": "catalog:msw",
"postcss": "^8.5.19",
"prettier-plugin-tailwindcss": "^0.8.1",
"shadcn": "^4.13.0",
"shiki": "^4.3.1",
"typescript": "catalog:typescript",
"typescript-7": "catalog:typescript",
"unified": "^11.0.5",
"vitest": "catalog:vitest"
},
"postcss": {
"plugins": {
"@tailwindcss/postcss": {}
}
},
"prettier": {
"arrowParens": "avoid",
"semi": false,
"singleQuote": true,
"tabWidth": 2,
"trailingComma": "none",
"useTabs": false,
"plugins": [
"prettier-plugin-tailwindcss"
]
}
}