-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.06 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
{
"name": "my-app",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"sitemap": "tsx scripts/sitemap_generator.ts",
"rss": "tsx scripts/rss_generator.ts",
"date": "date -u +\"%Y-%m-%dT%H:%M:%SZ\""
},
"dependencies": {
"@emotion/react": "^11.7.1",
"@emotion/styled": "^11.6.0",
"@giscus/react": "^3.0.0",
"dayjs": "^1.10.7",
"emotion-reset": "^3.0.1",
"feed": "^4.2.2",
"gray-matter": "^4.0.3",
"highlight.js": "^11.4.0",
"lodash": "^4.17.21",
"markdown-it": "^12.3.2",
"next": "^14.2.11",
"next-seo": "^6.6.0",
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"devDependencies": {
"@types/highlight.js": "^10.1.0",
"@types/lodash": "^4.14.179",
"@types/markdown-it": "^12.2.3",
"@types/node": "^22.5.5",
"@types/prettier": "^3.0.0",
"@types/react": "^18.3.5",
"eslint": "^8.9.0",
"eslint-config-next": "^14.2.11",
"prettier": "^3.2.4",
"tsx": "^4.7.0",
"typescript": "^5.6.2"
}
}