-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.26 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.26 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
{
"name": "karllorey.com",
"version": "0.1.0",
"private": true,
"scripts": {
"copy-post-assets": "node scripts/copy-post-assets.js",
"generate-og": "node scripts/generate-og-images.js",
"dev": "npm run copy-post-assets && next dev",
"build": "npm run copy-post-assets && npm run generate-og && next build",
"start": "next start",
"lint": "eslint .",
"format": "prettier --write .",
"format:check": "prettier --check ."
},
"dependencies": {
"@fontsource/lato": "^5.2.7",
"@fontsource/playfair-display": "^5.2.8",
"@next/mdx": "^16",
"gray-matter": "^4.0.3",
"highlight.js": "^11.11.1",
"next": "^16",
"next-mdx-remote": "^6.0.0",
"react": "^19.2.3",
"react-dom": "^19.2.3",
"react-icons": "^5.5.0",
"rehype-highlight": "^7.0.2",
"rehype-unwrap-images": "^1.0.0",
"remark-frontmatter": "^5.0.0",
"remark-mdx-frontmatter": "^5.2.0",
"satori": "^0.19.1",
"sharp": "^0.34.5"
},
"devDependencies": {
"@eslint/eslintrc": "^3",
"@tailwindcss/postcss": "^4",
"@types/node": "^25",
"@types/react": "^19",
"@types/react-dom": "^19",
"eslint": "^9",
"eslint-config-next": "^16",
"prettier": "^3.7.4",
"tailwindcss": "^4",
"typescript": "^5"
}
}