-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 2.69 KB
/
Copy pathpackage.json
File metadata and controls
97 lines (97 loc) · 2.69 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "portfolio",
"version": "1.0.0",
"private": true,
"type": "module",
"scripts": {
"article": "node lib/scripts/generate-article-template.js",
"build": "next build",
"clean": "rm -rf .next coverage",
"deps:audit": "pnpm audit --prod --audit-level=high",
"dev": "next dev",
"format": "oxfmt --write",
"format:check": "oxfmt --check",
"lint": "oxlint",
"lint:fix": "oxlint --fix",
"postbuild": "next-sitemap --config next-sitemap.config.cjs",
"postinstall": "prisma generate",
"prepare": "git config core.hooksPath .git-hooks",
"start": "next start",
"test": "jest",
"test:ci": "jest --ci",
"test:coverage": "jest --coverage",
"verify": "pnpm run lint && pnpm run format:check && pnpm run typecheck && pnpm run test:ci",
"verify:full": "pnpm run verify && pnpm run build",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@prisma/adapter-pg": "7.8.0",
"@prisma/client": "7.8.0",
"@sentry/nextjs": "10.57.0",
"@vercel/analytics": "2.0.1",
"@vercel/og": "0.11.1",
"@vercel/speed-insights": "2.0.0",
"clsx": "2.1.1",
"gray-matter": "4.0.3",
"lucide-react": "0.577.0",
"next": "16.2.10",
"next-mdx-remote": "6.0.0",
"next-themes": "0.4.6",
"react": "19.2.7",
"react-dom": "19.2.7",
"reading-time": "1.5.0",
"shiki": "4.2.0",
"swr": "2.4.2"
},
"devDependencies": {
"@commitlint/cli": "21.0.2",
"@commitlint/config-conventional": "21.0.2",
"@commitlint/types": "21.0.1",
"@shikijs/rehype": "4.2.0",
"@shikijs/transformers": "4.2.0",
"@tailwindcss/postcss": "4.3.3",
"@tailwindcss/typography": "0.5.20",
"@testing-library/dom": "10.4.1",
"@testing-library/jest-dom": "6.9.1",
"@testing-library/react": "16.3.2",
"@testing-library/user-event": "14.6.1",
"@types/jest": "30.0.0",
"@types/node": "24.13.3",
"@types/react": "19.2.17",
"@types/react-dom": "19.2.3",
"jest": "30.4.2",
"jest-environment-jsdom": "30.4.1",
"next-sitemap": "4.2.3",
"oxfmt": "0.54.0",
"oxlint": "1.69.0",
"postcss": "8.5.20",
"prisma": "7.8.0",
"rehype-autolink-headings": "7.1.0",
"rehype-code-titles": "1.2.1",
"rehype-slug": "6.0.0",
"remark-gfm": "4.0.1",
"tailwindcss": "4.3.3",
"typescript": "6.0.3"
},
"browserslist": [
"baseline widely available"
],
"engines": {
"node": "24.x",
"pnpm": ">=10"
},
"packageManager": "pnpm@10.34.5",
"pnpm": {
"overrides": {
"@hono/node-server": "^1.19.13",
"postcss": "^8.5.10"
},
"onlyBuiltDependencies": [
"@prisma/engines",
"@sentry/cli",
"prisma",
"sharp",
"unrs-resolver"
]
}
}