-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.23 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.23 KB
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
{
"name": "blog",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"clean": "rimraf .next node_modules"
},
"dependencies": {
"gray-matter": "latest",
"next": "^15.0.3",
"prism-react-renderer": "^2.4.0",
"react": "latest",
"react-dom": "latest",
"rehype": "^13.0.2",
"rehype-katex": "^7.0.1",
"rehype-sanitize": "^6.0.0",
"rehype-stringify": "^10.0.1",
"remark": "^15.0.1",
"remark-emoji": "^5.0.1",
"remark-gfm": "^4.0.0",
"remark-html": "latest",
"remark-math": "latest",
"remark-rehype": "latest",
"unified": "latest"
},
"devDependencies": {
"@tailwindcss/typography": "latest",
"@types/node": "latest",
"@types/react": "latest",
"@types/react-dom": "latest",
"autoprefixer": "latest",
"eslint": "latest",
"eslint-config-next": "latest",
"postcss": "latest",
"rimraf": "latest",
"tailwindcss": "latest",
"typescript": "latest"
},
"engines": {
"node": "22.x"
}
}