-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
55 lines (55 loc) · 1.52 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
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"name": "yunagi",
"version": "2.0.0-alpha",
"private": true,
"license": "MPL-2.0",
"author": "Itsuki Moroshima",
"scripts": {
"build": "next build",
"bump": "npm-check-updates -i && pnpm install",
"dev": "next dev --turbopack",
"dev:legacy": "next dev",
"lint": "next lint",
"prepare": "husky",
"prettier:check": "prettier . --check",
"prettier:write": "prettier . --write",
"start": "next start"
},
"dependencies": {
"@giscus/react": "^3.0.0",
"@primer/octicons-react": "^19.12.0",
"@shikijs/rehype": "^1.22.2",
"marked": "^15.0.0",
"next": "15.0.3",
"next-mdx-remote": "5.0.0",
"react": "19.0.0-rc-66855b96-20241106",
"react-dom": "19.0.0-rc-66855b96-20241106",
"rehype-autolink-headings": "^7.1.0",
"rehype-katex": "^7.0.1",
"rehype-slug": "^6.0.0",
"rehype-toc": "^3.0.2",
"remark-gfm": "^4.0.0",
"remark-math": "^6.0.0",
"rss": "^1.2.2",
"shiki": "^1.22.2"
},
"devDependencies": {
"@ianvs/prettier-plugin-sort-imports": "^4.4.0",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"@types/rss": "^0.0.32",
"eslint": "^8",
"eslint-config-next": "15.0.3",
"eslint-config-prettier": "^9.1.0",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"npm-check-updates": "^17.1.10",
"postcss": "^8",
"prettier": "3.3.3",
"prettier-plugin-autocorrect": "^0.4.1",
"prettier-plugin-packagejson": "^2.5.3",
"tailwindcss": "^3.4.1",
"typescript": "^5"
}
}