-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
42 lines (42 loc) · 926 Bytes
/
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": "rafael-turk-blog",
"license": "MIT",
"description": "rafaelturk.com (blog)",
"dependencies": {
"@mdx-js/loader": "^2.1.1",
"@mdx-js/react": "^2.1.1",
"@next/mdx": "^12.1.6",
"@types/node-fetch": "^2.5.8",
"date-fns": "^2.28.0",
"load-script": "^1.0.0",
"next": "13.0.0",
"node-fetch": "^2.6.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-youtube": "^7.13.0",
"time-ago": "^0.2.1"
},
"devDependencies": {
"@types/react": "^18.0.14",
"@types/react-dom": "^18.0.5",
"convex": "^0.1.8",
"eslint": "^8.18.0",
"eslint-config-next": "^12.1.6",
"prettier": "^2.2.1",
"typescript": "^4.7.3"
},
"pnpm": {
"peerDependencyRules": {
"ignoreMissing": [
"webpack"
]
}
},
"scripts": {
"dev": "next dev -H 0.0.0.0",
"build": "next build"
},
"prettier": {
"arrowParens": "avoid"
}
}