-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
177 lines (177 loc) · 4.62 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
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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
{
"name": "lamp-platform",
"version": "0.0.0",
"private": true,
"scripts": {
"docusaurus": "docusaurus",
"start": "docusaurus start",
"build": "docusaurus build",
"swizzle": "docusaurus swizzle",
"deploy": "docusaurus deploy",
"clear": "docusaurus clear",
"serve": "docusaurus serve",
"write-translations": "docusaurus write-translations",
"write-heading-ids": "docusaurus write-heading-ids",
"typecheck": "tsc"
},
"dependencies": {
"@docusaurus/core": "3.6.0",
"@docusaurus/plugin-content-docs": "3.6.0",
"@docusaurus/preset-classic": "3.6.0",
"@easyops-cn/docusaurus-search-local": "^0.45.0",
"@mdx-js/react": "^3.0.0",
"clsx": "^2.0.0",
"prism-react-renderer": "^2.3.0",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"url": "^0.11.4"
},
"devDependencies": {
"@docusaurus/module-type-aliases": "3.6.0",
"@docusaurus/tsconfig": "3.6.0",
"@docusaurus/types": "3.6.0",
"typescript": "~5.6.2"
},
"browserslist": {
"production": [
">0.5%",
"not dead",
"not op_mini all"
],
"development": [
"last 3 chrome version",
"last 3 firefox version",
"last 5 safari version"
]
},
"engines": {
"node": ">=18.0"
},
"docusaurus": {
"title": "LAMP Platform",
"tagline": "The LAMP Platform documentation.",
"url": "https://docs.lamp.digital",
"favicon": "/logo.png",
"organizationName": "BIDMCDigitalPsychiatry",
"projectName": "LAMP-platform",
"baseUrl": "/",
"onBrokenLinks": "warn",
"onDuplicateRoutes": "warn",
"onBrokenMarkdownLinks": "warn",
"themeConfig": {
"defaultMode": "light",
"disableSwitch": false,
"respectPrefersColorScheme": true,
"image": "logo.png",
"languageTabs": [
{
"tabName": "cURL",
"highlight": "bash",
"language": "curl",
"variant": "curl",
"options": {
"longFormat": false,
"followRedirect": true,
"trimRequestBody": true
}
}
],
"navbar": {
"title": "LAMP Platform",
"hideOnScroll": false,
"logo": {
"alt": "LAMP Platform",
"src": "logo.png"
},
"items": [
{
"label": "User Guide",
"position": "left",
"to": "/",
"activeBaseRegex": "/([0-9a-zA-Z]+)",
"items": [
{
"label": "Download App",
"to": "/app"
},
{
"label": "Report Bug",
"to": "/bug"
},
{
"label": "FAQ",
"to": "/faq"
}
]
},
{
"label": "What's New",
"position": "left",
"to": "/blog"
},
{
"label": "Community",
"position": "right",
"items": [
{
"label": "Forum",
"href": "https://mindlamp.discourse.group/"
},
{
"label": "GitHub",
"href": "https://github.com/BIDMCDigitalPsychiatry/LAMP-platform/"
},
{
"label": "Contact",
"href": "mailto:[email protected]"
}
]
}
]
},
"footer": {
"style": "dark",
"links": [],
"copyright": "2024 LAMP Consortium & Division of Digital Psychiatry @ BIDMC"
}
},
"presets": [
[
"@docusaurus/preset-classic",
{
"docs": {
"routeBasePath": "/",
"showLastUpdateAuthor": true,
"showLastUpdateTime": true,
"editUrl": "https://github.com/BIDMCDigitalPsychiatry/LAMP-platform/edit/master/"
},
"blog": {
"blogTitle": "LAMP Platform",
"blogDescription": "The LAMP Platform documentation.",
"blogSidebarTitle": "All updates",
"blogSidebarCount": 10000,
"postsPerPage": 1,
"feedOptions": {
"type": "all",
"copyright": "© ${new Date().getFullYear()} LAMP Consortium & Division of Digital Psychiatry @ BIDMC"
}
},
"googleAnalytics": {
"trackingID": "UA-192736629-1"
}
}
]
],
"plugins": [
[
"@easyops-cn/docusaurus-search-local",
{
"indexDocs": true,
"indexBlog": true,
"indexPages": true,
"hashed": true
}
]
]
}
}