-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.42 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
{
"name": "jfh-2021",
"description": "My new personal site for 2021",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint --fix",
"optimise-images": "bunx @squoosh/cli --mozjpeg '{quality:75}' -d batch-out/ batch-in/*",
"upload-images": "bun ./upload-images.js",
"postinstall": "prisma generate"
},
"dependencies": {
"@prisma/client": "^5.3.1",
"@vercel/analytics": "^1.1.0",
"@vercel/speed-insights": "^1.0.9",
"contentlayer": "^0.3.4",
"date-fns": "^2.30.0",
"eslint": "8.50.0",
"eslint-config-next": "13.5.2",
"exifr": "^7.1.3",
"next": "13.5.2",
"next-contentlayer": "^0.3.4",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-swipeable": "^7.0.1",
"react-use-keypress": "^1.3.1",
"react-wrap-balancer": "^1.1.0",
"rehype-autolink-headings": "^7.0.0",
"rehype-pretty-code": "^0.10.1",
"rehype-slug": "^6.0.0",
"remark": "^15.0.1",
"remark-gfm": "^4.0.0",
"remark-html": "^16.0.0",
"rss": "^1.2.2",
"shiki": "^0.14.4",
"swr": "^2.2.4"
},
"devDependencies": {
"@types/node": "20.6.3",
"@types/react": "18.2.22",
"@types/react-dom": "18.2.7",
"@types/rss": "^0.0.30",
"autoprefixer": "^10.4.16",
"postcss": "^8.4.30",
"prisma": "^5.3.1",
"tailwindcss": "^3.3.3",
"typescript": "5.2.2"
}
}