-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathpackage.json
More file actions
104 lines (104 loc) · 3.32 KB
/
package.json
File metadata and controls
104 lines (104 loc) · 3.32 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
98
99
100
101
102
103
104
{
"name": "karhdo.dev",
"version": "3.0.0",
"engines": {
"node": "24.x"
},
"packageManager": "pnpm@10.25.0+sha512.5e82639027af37cf832061bcc6d639c219634488e0f2baebe785028a793de7b525ffcd3f7ff574f5e9860654e098fe852ba8ac5dd5cefe1767d23a020a92f501",
"private": true,
"scripts": {
"start": "next dev",
"dev": "cross-env INIT_CWD=$PWD next dev",
"build": "NODE_OPTIONS='--no-deprecation' contentlayer2 build && next build",
"serve": "next start",
"analyze": "cross-env ANALYZE=true next build",
"lint": "next lint --fix --dir pages --dir app --dir components --dir lib --dir layouts --dir scripts",
"prisma:generate": "prisma generate && node scripts/postgenerate.mjs",
"prisma:migrate": "prisma migrate dev",
"prisma:migrate:deploy": "dotenv -e .env.local -- prisma migrate deploy",
"postgenerate": "node scripts/postgenerate.mjs",
"postinstall": "pnpm prisma:generate"
},
"dependencies": {
"@giscus/react": "^3.1.0",
"@headlessui/react": "2.2.9",
"@next/bundle-analyzer": "16.1.3",
"@octokit/graphql": "^9.0.3",
"@prisma/adapter-pg": "^7.3.0",
"@prisma/client": "7.3.0",
"@prisma/client-runtime-utils": "^7.2.0",
"@tailwindcss/forms": "^0.5.11",
"@tailwindcss/postcss": "^4.1.18",
"@tailwindcss/typography": "^0.5.19",
"body-scroll-lock": "4.0.0-beta.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"contentlayer2": "0.5.8",
"esbuild": "0.27.2",
"github-slugger": "^2.0.0",
"gray-matter": "^4.0.3",
"hast-util-from-html-isomorphic": "^2.0.0",
"image-size": "2.0.2",
"katex": "^0.16.28",
"lodash": "^4.17.21",
"lucide-react": "^0.562.0",
"next": "16.1.1",
"next-contentlayer2": "0.5.8",
"next-themes": "^0.4.6",
"pg": "^8.17.1",
"pliny": "0.4.1",
"postcss": "^8.5.6",
"react": "19.2.3",
"react-dom": "19.2.3",
"react-medium-image-zoom": "^5.4.0",
"react-snowfall": "^2.4.0",
"reading-time": "1.5.0",
"rehype-autolink-headings": "^7.1.0",
"rehype-citation": "^2.3.1",
"rehype-katex": "^7.0.1",
"rehype-katex-notranslate": "^1.1.4",
"rehype-preset-minify": "7.0.1",
"rehype-prism-plus": "^2.0.1",
"rehype-slug": "^6.0.0",
"remark": "^15.0.1",
"remark-gfm": "^4.0.1",
"remark-github-blockquote-alert": "^2.0.1",
"remark-math": "^6.0.0",
"swr": "^2.3.8",
"tailwindcss": "^4.1.18",
"typed.js": "^2.1.0",
"unist-util-visit": "^5.0.0"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"@svgr/webpack": "^8.1.0",
"@types/body-scroll-lock": "^3.1.2",
"@types/mdx": "^2.0.13",
"@types/react": "^19.2.8",
"@typescript-eslint/eslint-plugin": "^8.51.0",
"@typescript-eslint/parser": "^8.53.0",
"cross-env": "^10.1.0",
"dotenv": "^17.2.3",
"eslint": "^9.39.2",
"eslint-config-next": "16.1.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-prettier": "^5.5.5",
"globals": "^16.5.0",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"prettier": "^3.8.1",
"prettier-plugin-tailwindcss": "^0.7.2",
"prisma": "7.3.0",
"tsx": "^4.21.0",
"typescript": "^5.9.3"
},
"lint-staged": {
"*.+(js|jsx|ts|tsx)": [
"eslint --fix"
],
"*.+(js|jsx|ts|tsx|json|css|md|mdx)": [
"prettier --write"
]
}
}