-
-
Notifications
You must be signed in to change notification settings - Fork 28
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.09 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.09 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
{
"name": "landing",
"version": "0.1.0",
"type": "module",
"private": true,
"scripts": {
"dev": "node ./script.js && next dev",
"search": "node ./script.js",
"build": "node ./script.js && next build",
"start": "node ./script.js && next start",
"lint": "eslint"
},
"dependencies": {
"@devup-ui/components": "workspace:*",
"@devup-ui/react": "workspace:*",
"@devup-ui/reset-css": "workspace:*",
"@mdx-js/loader": "^3.1.0",
"@mdx-js/react": "^3.1.0",
"@next/mdx": "^15.4.4",
"@types/mdx": "^2.0.13",
"body-scroll-lock": "3.1.5",
"clsx": "^2.1.1",
"next": "^15.4.4",
"react": "^19.1.1",
"react-dom": "^19.1.1",
"react-markdown": "^10.1.0",
"react-syntax-highlighter": "^15.6.1",
"remark-gfm": "^4.0.1"
},
"devDependencies": {
"@devup-ui/next-plugin": "workspace:*",
"@types/body-scroll-lock": "^3.1.2",
"@types/node": "^24",
"@types/react": "^19",
"@types/react-dom": "^19",
"@types/react-syntax-highlighter": "^15.5.13",
"glob": "^11.0.3",
"remark": "^15.0.1",
"typescript": "^5"
}
}