-
Notifications
You must be signed in to change notification settings - Fork 175
/
package.json
60 lines (60 loc) · 1.57 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
56
57
58
59
60
{
"name": "rauchg-blog",
"license": "MIT",
"description": "rauchg.com (blog)",
"dependencies": {
"@fontsource/inter": "^4.5.15",
"@fontsource/roboto-mono": "^4.5.10",
"@mdx-js/react": "^2.3.0",
"@next/mdx": "15.0.2",
"@types/node-fetch": "^2.6.2",
"@upstash/redis": "^1.20.1",
"@vercel/analytics": "^1.0.0",
"comma-number": "^2.1.0",
"date-fns": "^2.29.3",
"image-size": "^1.0.2",
"load-script": "^1.0.0",
"next": "15.0.2",
"react": "19.0.0-rc-02c0e824-20241028",
"react-dom": "19.0.0-rc-02c0e824-20241028",
"react-intersection-observer": "^8.34.0",
"react-tweet": "^3.1.1",
"react-wrap-balancer": "^0.2.4",
"react-youtube": "^10.1.0",
"swr": "^2.1.2",
"time-ago": "^0.2.1",
"word-wrap": "^1.2.5"
},
"devDependencies": {
"@types/comma-number": "^2.1.0",
"@types/react": "npm:[email protected]",
"@types/react-dom": "npm:[email protected]",
"autoprefixer": "^10.4.14",
"eslint": "^8.56.0",
"eslint-config-next": "15.0.2",
"postcss": "^8.4.21",
"prettier": "^2.8.4",
"tailwindcss": "^3.3.1",
"typescript": "^4.9.5"
},
"pnpm": {
"peerDependencyRules": {
"ignoreMissing": [
"webpack",
"@mdx-js/loader"
]
},
"overrides": {
"@types/react": "npm:[email protected]",
"@types/react-dom": "npm:[email protected]"
}
},
"scripts": {
"dev": "next dev --turbopack -H 0.0.0.0",
"build": "next build",
"start": "next start"
},
"prettier": {
"arrowParens": "avoid"
}
}