-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.54 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 loc) · 1.54 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "blog.me",
"version": "2.0.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"migrate:blog": "tsx scripts/migrate-blog.ts"
},
"dependencies": {
"@emailjs/browser": "^4.4.1",
"axios": "^1.7.9",
"gray-matter": "^4.0.3",
"katex": "^0.16.47",
"next": "^15.1.6",
"next-intl": "^3.26.3",
"next-mdx-remote": "^6.0.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"rehype-highlight": "^7.0.2",
"rehype-katex": "^7.0.1",
"rehype-slug": "^6.0.0",
"rehype-unwrap-images": "^1.0.0",
"remark-gfm": "^4.0.1",
"remark-math": "^6.0.0",
"server-only": "^0.0.1"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.1.0",
"@types/node": "^22.10.5",
"@types/react": "^18.3.18",
"@types/react-dom": "^18.3.5",
"@vitejs/plugin-react": "^4.3.4",
"autoprefixer": "^10.4.20",
"clsx": "^2.1.1",
"eslint": "^8.57.1",
"eslint-config-next": "^15.1.6",
"jsdom": "^25.0.1",
"next-themes": "^0.4.4",
"postcss": "^8.5.10",
"tailwindcss": "^3.4.17",
"tsx": "^4.19.2",
"tw-colors": "^3.3.2",
"typescript": "^5.7.3",
"vitest": "^3.2.7"
},
"overrides": {
"react": "$react",
"react-dom": "$react-dom",
"esbuild": "^0.25.0",
"vite": "^6.4.3",
"postcss": "$postcss"
},
"engines": {
"node": "24.x"
}
}