forked from lmsqueezy/wedges
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.63 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
47
48
49
50
51
52
53
54
55
{
"name": "@wedges/docs",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "pnpm generate:examples && next dev -p 3000",
"build": "pnpm generate:examples && next build",
"start": "next start",
"lint": "next lint",
"lint:fix": "next lint --fix",
"preview": "pnpm generate:examples && next build && next start -p 3000",
"clean": "rm -rf .turbo && rm -rf .contentlayer && rm -rf node_modules && rm -rf .next",
"generate:examples": "node src/scripts/generateExamples.mjs"
},
"dependencies": {
"@headlessui/react": "^1.7.17",
"@iconicicons/react": "^1.5.1",
"@radix-ui/react-scroll-area": "^1.0.5",
"clsx": "^2.0.0",
"fathom-client": "^3.6.0",
"next": "14.0.4",
"react": "^18",
"react-dom": "^18",
"sass": "^1.69.5",
"shikiji": "0.9.x",
"tailwind-merge": "^2.1.0"
},
"devDependencies": {
"@docsearch/react": "^3.5.2",
"@lemonsqueezy/wedges": "workspace:*",
"@tailwindcss/typography": "^0.5.10",
"@types/hast": "^3.0.3",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"@types/unist": "^3.0.2",
"autoprefixer": "^10.4.16",
"contentlayer": "latest",
"eslint": "^8",
"hast-util-from-html-isomorphic": "^2.0.0",
"mdast-util-toc": "^7.0.0",
"next-contentlayer": "latest",
"postcss": "^8",
"rehype-autolink-headings": "^7.1.0",
"rehype-pretty-code": "^0.12.3",
"rehype-slug": "^6.0.0",
"remark": "^15.0.1",
"remark-gfm": "^3.0.1",
"rimraf": "^5.0.5",
"tailwindcss": "^3.4.0",
"typescript": "^5",
"unist-builder": "^4.0.0",
"unist-util-visit": "^5.0.0"
}
}