-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.79 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.79 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
{
"name": "@onesoftnet/sudoc",
"version": "2.21.0",
"private": true,
"type": "module",
"description": "A website template / backbone that you can use to scaffold your own project documentation!",
"license": "AGPL-3.0-or-later",
"author": {
"name": "Ar Rakin",
"email": "rakinar2@osndevs.org"
},
"scripts": {
"dev": "next dev",
"build": "node scripts/init.ts && node scripts/genindexes.ts --pre && next build && node scripts/genindexes.ts --post",
"start": "next start",
"lint": "eslint"
},
"dependencies": {
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.1",
"@heroui/react": "^2.8.3",
"@mdx-js/loader": "^3.1.1",
"@mdx-js/react": "^3.1.1",
"@mui/material": "^7.3.2",
"@next/mdx": "^16.0.7",
"@tailwindcss/typography": "^0.5.16",
"@types/mdx": "^2.0.13",
"clsx": "^2.1.1",
"date-fns": "^4.1.0",
"framer-motion": "^12.23.12",
"next": "15.5.7",
"react": "19.1.2",
"react-dom": "19.1.2",
"react-icons": "^5.5.0",
"rehype-autolink-headings": "^7.1.0",
"rehype-pretty-code": "^0.14.1",
"rehype-slug": "^6.0.0",
"remark-frontmatter": "^5.0.0",
"remark-gfm": "^4.0.1",
"remark-mdx-frontmatter": "^5.2.0",
"shiki": "^3.19.0",
"zustand": "^5.0.8"
},
"devDependencies": {
"@eslint/eslintrc": "^3",
"@tailwindcss/postcss": "^4",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"eslint": "^9",
"eslint-config-next": "15.5.2",
"glob": "^12.0.0",
"tailwindcss": "^4",
"typescript": "^5",
"yaml": "^2.8.1",
"zod": "^4.1.5"
}
}