-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
41 lines (41 loc) · 1.09 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
{
"name": "blog",
"version": "1.0.0",
"repository": "https://github.com/dahliaos/blog",
"author": "The dahliaOS Authors",
"license": "Apache-2.0",
"scripts": {
"dev": "next dev",
"build": "node ./scripts/gen-rss.mjs && next build",
"start": "next start",
"lint": "next lint",
"prettier": "prettier --write ."
},
"dependencies": {
"@vercel/og": "^0.0.21",
"gray-matter": "^4.0.3",
"next": "^13.5.5",
"nextra": "2.0.1",
"nextra-theme-blog": "2.0.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rss": "^1.2.2",
"urlcat": "^3.1.0"
},
"devDependencies": {
"@types/node": "18.11.10",
"@types/react": "18.0.26",
"@types/react-dom": "18.0.9",
"@types/rss": "^0.0.29",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"eslint": "^8.51.0",
"eslint-config-next": "13.0.6",
"eslint-config-prettier": "^8.10.0",
"eslint-plugin-mdx": "^2.2.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.33.2",
"prettier": "^2.8.8",
"typescript": "4.9.3"
}
}