-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
35 lines (35 loc) · 872 Bytes
/
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
{
"name": "garrit.xyz",
"version": "0.1.0",
"private": true,
"scripts": {
"start": "npm run build && next dev",
"start:prod": "npm run build && next start",
"build": "next build && npm run build:rss && npm run build:sitemap && next build",
"build:rss": "ts-node lib/rss.ts",
"build:sitemap": "next-sitemap"
},
"dependencies": {
"markdown": "0.5.0",
"next": "14.2.24",
"next-plausible": "3.12.4",
"react": "^18.3.1",
"react-markdown": "9.0.3",
"react-snowfall": "^1.2.1",
"react-web-share": "^2.0.2",
"rehype-raw": "7.0.0",
"remark-gfm": "4.0.1"
},
"devDependencies": {
"glob": "11.0.1",
"gray-matter": "4.0.3",
"next-sitemap": "4.2.3",
"raw-loader": "4.0.2",
"react-syntax-highlighter": "^15.6.1",
"rfc822-date": "0.0.3",
"sass": "1.85.0",
"ts-node": "10.9.2",
"typescript": "^5.7.3",
"xml-formatter": "^3.6.4"
}
}