forked from celestiaorg/docs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.49 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.49 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
{
"name": "docs",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "next dev --webpack",
"build": "next build --webpack",
"postbuild": "pagefind --site out --output-path out/_pagefind",
"start": "serve out",
"lint": "eslint",
"prepare": "simple-git-hooks",
"generate:llms": "node scripts/generate-llms.js",
"check-links": "node scripts/check-links.mjs"
},
"simple-git-hooks": {
"pre-push": "npm run lint"
},
"dependencies": {
"@heroicons/react": "^2.2.0",
"@monaco-editor/react": "^4.7.0",
"@open-rpc/client-js": "^2.0.0",
"axios": "^1.13.2",
"next": "^16.0.8",
"nextra": "^4.6.0",
"nextra-theme-docs": "^4.6.0",
"react": "19.2.0",
"react-copy-to-clipboard": "^5.1.0",
"react-dom": "19.2.0",
"react-icons": "^5.5.0",
"react-syntax-highlighter": "^16.1.0",
"rehype-katex": "^7.0.1",
"remark-math": "^6.0.0"
},
"devDependencies": {
"@tailwindcss/postcss": "^4",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-copy-to-clipboard": "^5.0.7",
"@types/react-dom": "^19",
"@types/react-syntax-highlighter": "^15.5.13",
"eslint": "^9",
"eslint-config-next": "^16.0.8",
"glob": "^11.0.3",
"pagefind": "^1.4.0",
"serve": "^14.2.4",
"remark-mdx": "^3.1.1",
"remark-parse": "^11.0.0",
"simple-git-hooks": "^2.13.1",
"tailwindcss": "^4",
"typescript": "^5",
"unified": "^11.0.5",
"unist-util-visit": "^5.0.0"
}
}