-
Notifications
You must be signed in to change notification settings - Fork 55
/
package.json
46 lines (46 loc) · 1.42 KB
/
package.json
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
{
"name": "@wedges/docs",
"version": "0.1.0",
"private": true,
"scripts": {
"build": "pnpm generate:examples && next build",
"dev": "pnpm generate:examples && next dev -p 3000",
"start": "next start",
"clean": "rimraf .turbo node_modules .next",
"generate:examples": "node src/scripts/generateExamples.mjs",
"lint": "next lint",
"lint:fix": "next lint --fix",
"preview": "pnpm generate:examples && next build && next start -p 3000",
"typecheck": "tsc --pretty --noEmit"
},
"dependencies": {
"@headlessui/react": "^2.1.2",
"@iconicicons/react": "^1.5.1",
"@radix-ui/react-navigation-menu": "^1.2.0",
"@radix-ui/react-scroll-area": "^1.1.0",
"fathom-client": "^3.7.2",
"next": "14.2.6",
"sass": "^1.77.8"
},
"devDependencies": {
"@docsearch/react": "^3.6.1",
"@lemonsqueezy/wedges": "workspace:*",
"@shikijs/transformers": "^1.14.1",
"@tailwindcss/typography": "^0.5.14",
"@types/hast": "^3.0.4",
"@types/unist": "^3.0.3",
"autoprefixer": "^10.4.20",
"hast-util-from-html-isomorphic": "^2.0.0",
"mdast-util-toc": "^7.1.0",
"next-mdx-remote": "^5.0.0",
"postcss": "^8",
"rehype-autolink-headings": "^7.1.0",
"rehype-pretty-code": "^0.13.2",
"rehype-slug": "^6.0.0",
"remark": "^15.0.1",
"remark-gfm": "^4.0.0",
"remark-smartypants": "^3.0.2",
"unist-builder": "^4.0.0",
"unist-util-visit": "^5.0.0"
}
}