-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 900 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 900 Bytes
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
{
"name": "my-personal-blog",
"version": "1.0.0",
"private": true,
"type": "module",
"scripts": {
"dev": "next dev -p 3030",
"build": "next build",
"start": "next start",
"prepare": "husky"
},
"dependencies": {
"@mdx-js/loader": "^3.1.0",
"@mdx-js/react": "^3.1.0",
"@next/mdx": "^16.2.3",
"@terrastruct/d2": "^0.1.33",
"@types/leaflet": "^1.9.21",
"@types/mdx": "^2.0.13",
"@vahor/rehype-d2": "^0.0.9",
"leaflet": "^1.9.4",
"leaflet-gpx": "^2.2.0",
"next": "latest",
"react": "latest",
"react-code-blocks": "^0.1.6",
"react-dom": "latest",
"react-leaflet": "^5.0.0",
"rehype-slug": "^6.0.0"
},
"devDependencies": {
"@types/node": "22.15.18",
"eslint-config-next": "^16.2.3",
"eslint-config-prettier": "^10.1.5",
"husky": "^9.1.7",
"prettier": "^3.5.3",
"typescript": "5.8.3"
}
}