-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.2 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
{
"name": "personal-blog-next",
"version": "1.0.2",
"description": "My personal blog built with TypeScript and Next.js.",
"private": true,
"author": {
"name": "Vinícius Gajo",
"email": "[email protected]",
"url": "https://gaio.dev"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"lint": "next lint",
"start": "next start"
},
"dependencies": {
"axios": "^1.7.7",
"cheerio": "^1.0.0",
"date-fns": "^4.1.0",
"gray-matter": "^4.0.3",
"highlight.js": "^11.10.0",
"next": "^15.0.3",
"polished": "^4.3.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-icons": "^5.3.0",
"rehype-katex": "^7.0.1",
"rehype-stringify": "^10.0.1",
"remark-gfm": "^4.0.0",
"remark-math": "^6.0.0",
"remark-parse": "^11.0.0",
"remark-rehype": "^11.1.1",
"sass": "^1.81.0",
"unified": "^11.0.5"
},
"devDependencies": {
"@next/eslint-plugin-next": "^15.0.3",
"@types/node": "^22.9.3",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"eslint": "^8.57.0",
"eslint-config-next": "^15.0.3",
"eslint-plugin-react": "^7.37.2",
"jest": "^29.7.0",
"typescript": "^5.7.2"
}
}