-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 3.06 KB
/
Copy pathpackage.json
File metadata and controls
95 lines (95 loc) · 3.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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "devguard-documentation",
"version": "0.1.0",
"description": "Devguard documentation",
"scripts": {
"dev": "next dev --webpack",
"build": "next build --webpack",
"start": "next start",
"postbuild": "next-sitemap && cp sitemap.xml public/sitemap.xml && node utilities/copy-pages-to-public.mjs && node utilities/create-llmstxt.mjs",
"lint": "next lint",
"seo-check": "docker run --rm -w /app -v $(pwd):/app registry.opencode.de/open-code/document-writing-tools/seo-check:main-amd64"
},
"repository": {
"type": "git",
"url": "git+https://github.com/l3montree-dev/devguard-documentation.git"
},
"author": {
"name": "l3montree GmbH",
"email": "developer@l3montree.com",
"url": "https://l3montree.com/"
},
"contributors": [
{
"name": "Tim Bastin",
"email": "tim.bastin@l3montree.com"
},
{
"name": "Sebastian Kawelke",
"email": "sebastian.kawelke@l3montree.com"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/l3montree-dev/devguard-documentation/issues"
},
"engines": {
"node": ">=v26.5.0",
"npm": ">=11.17.0"
},
"homepage": "https://github.com/l3montree-dev/devguard-documentation",
"dependencies": {
"@document-writing-tools/kernux-theme": "2.2.2",
"@ltonetwork/http-message-signatures": "0.1.12",
"@radix-ui/react-collapsible": "1.1.17",
"@radix-ui/react-dialog": "1.1.20",
"@radix-ui/react-separator": "1.1.12",
"@radix-ui/react-slot": "1.3.0",
"@radix-ui/react-tabs": "1.1.18",
"@radix-ui/react-tooltip": "1.2.13",
"@tanstack/react-table": "8.21.3",
"@theguild/remark-mermaid": "0.3.0",
"class-variance-authority": "0.7.1",
"clsx": "2.1.1",
"date-fns": "4.4.0",
"gsap": "3.15.0",
"lodash": "4.18.1",
"lucide-react": "1.25.0",
"next": "16.2.11",
"next-sitemap": "4.2.3",
"gray-matter": "4.0.3",
"ogl": "1.0.11",
"openapi-types": "12.1.3",
"react": "19.2.8",
"react-dom": "19.2.8",
"react-markdown": "10.1.0",
"recharts": "3.10.0",
"sharp": "0.35.3",
"swagger-ui-react": "5.32.11",
"swr": "2.4.2",
"tailwind-merge": "3.6.0"
},
"devDependencies": {
"@eslint/eslintrc": "3.3.6",
"@eslint/js": "10.0.1",
"@tailwindcss/postcss": "4.3.3",
"@types/lodash": "4.17.24",
"@types/node": "26.1.1",
"@types/react": "19.2.17",
"@types/swagger-ui-react": "5.18.0",
"autoprefixer": "10.5.4",
"eslint": "10.7.0",
"eslint-config-next": "16.2.11",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-prettier": "5.5.6",
"typescript": "^5.9.3"
},
"overrides": {
"sharp": "0.35.3",
"postcss": "8.5.22",
"js-yaml": "4.3.0",
"gray-matter": {
"js-yaml": "^3.13.1"
}
}
}