forked from rocicorp/zero-docs
-
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.06 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 2.06 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": "aria-docs",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "npm run build:search && npm run build:llms && next build",
"build:search": "tsx lib/generateSearchIndex.ts",
"build:llms": "node generate-llms.js",
"start": "npm run build:search && next start",
"lint": "next lint",
"format": "prettier --write .",
"links": "blc http://localhost:3000/ -ro --exclude 'https://discord.rocicorp.dev/' --exclude 'https://bsky.app/profile/zero.rocicorp.dev' --exclude 'https://x.com/rocicorp_zero'"
},
"dependencies": {
"@radix-ui/react-collapsible": "^1.1.0",
"@radix-ui/react-dialog": "^1.1.1",
"@radix-ui/react-dropdown-menu": "^2.1.1",
"@radix-ui/react-scroll-area": "^1.1.0",
"@radix-ui/react-slot": "^1.1.0",
"broken-link-checker": "^0.7.8",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"gray-matter": "^4.0.3",
"lucide-react": "^0.435.0",
"lunr": "^2.3.9",
"next": "^14.2.6",
"next-mdx-remote": "^5.0.0",
"next-themes": "^0.3.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"rehype-autolink-headings": "^7.1.0",
"rehype-code-titles": "^1.2.0",
"rehype-prism-plus": "^2.0.0",
"rehype-slug": "^6.0.0",
"remark": "^15.0.1",
"remark-gfm": "^4.0.0",
"remark-parse": "^11.0.0",
"remark-stringify": "^11.0.0",
"tailwind-merge": "^2.5.2",
"tailwindcss-animate": "^1.0.7",
"unist-util-visit": "^5.0.0"
},
"devDependencies": {
"@rocicorp/prettier-config": "^0.3.0",
"@tailwindcss/typography": "^0.5.14",
"@types/hast": "^3.0.4",
"@types/lunr": "^2.3.7",
"@types/node": "^20.17.19",
"@types/react": "^18",
"@types/react-dom": "^18",
"@types/unist": "^3.0.3",
"autoprefixer": "^10.4.20",
"eslint": "^8",
"eslint-config-next": "^14.2.6",
"highlight.js": "^11.10.0",
"postcss": "^8",
"react-highlight": "^0.15.0",
"tailwindcss": "^3.4.10",
"ts-node": "^10.9.2",
"tsx": "^4.19.3",
"typescript": "^5"
},
"prettier": "@rocicorp/prettier-config"
}