-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
107 lines (107 loc) · 3.36 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
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
105
106
107
{
"name": "site",
"version": "2.3.0",
"private": true,
"scripts": {
"start": "next start",
"format": "prettier --write .",
"dev": "cross-env INIT_CWD=$PWD next dev",
"build": "cross-env INIT_CWD=$PWD next build",
"serve": "next start",
"analyze": "cross-env ANALYZE=true next build",
"postinstall": "prisma generate",
"postbuild": "cross-env NODE_OPTIONS='--experimental-json-modules' node ./scripts/postbuild.mjs",
"lint": "next lint --fix --dir pages --dir app --dir components --dir lib --dir layouts --dir scripts",
"prepare": "husky",
"db:push": "prisma db push",
"notion:pull": "notion-downloader pull",
"notion:cleanup": "notion-downloader cleanup"
},
"dependencies": {
"@giscus/react": "^3.1.0",
"@headlessui/react": "2.2.0",
"@libsql/client": "^0.6.0",
"@next/bundle-analyzer": "15.0.2",
"@prisma/adapter-libsql": "^5.12.1",
"@prisma/client": "^5.12.1",
"@radix-ui/react-dialog": "^1.1.4",
"@radix-ui/react-dropdown-menu": "^2.1.4",
"@radix-ui/react-slot": "^1.1.1",
"@rehype-pretty/transformers": "^0.13.2",
"@tailwindcss/typography": "^0.5.15",
"@tanstack/react-query": "^5.62.11",
"@tanstack/react-query-devtools": "^5.62.11",
"@tanstack/react-query-next-experimental": "^5.64.1",
"@vercel/og": "0.5.18",
"@vercel/speed-insights": "^1.1.0",
"autoprefixer": "^10.4.13",
"body-scroll-lock": "^4.0.0-beta.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cmdk": "1.0.0",
"contentlayer2": "0.5.3",
"esbuild": "0.20.2",
"github-slugger": "^2.0.0",
"gray-matter": "^4.0.2",
"hast-util-from-html-isomorphic": "^2.0.0",
"image-size": "1.0.0",
"lucide-react": "^0.469.0",
"next": "15.1.6",
"next-contentlayer2": "0.5.3",
"next-themes": "^0.4.4",
"pliny": "0.4.0",
"postcss": "^8.4.24",
"posthog-js": "^1.93.3",
"react": "rc",
"react-dom": "rc",
"reading-time": "1.5.0",
"rehype-autolink-headings": "^7.1.0",
"rehype-citation": "^2.0.0",
"rehype-katex": "^7.0.0",
"rehype-katex-notranslate": "^1.1.4",
"rehype-preset-minify": "7.0.0",
"rehype-slug": "^6.0.0",
"remark": "^15.0.0",
"remark-gfm": "^4.0.0",
"remark-github-blockquote-alert": "^1.2.1",
"remark-math": "^6.0.0",
"shiki": "^1.24.4",
"tailwind-merge": "^2.6.0",
"tailwindcss": "^3.4.14",
"tailwindcss-animate": "^1.0.7",
"unist-util-visit": "^5.0.0"
},
"devDependencies": {
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.16.0",
"@svgr/webpack": "^8.0.1",
"@types/mdx": "^2.0.12",
"@types/react": "^18.2.73",
"@typescript-eslint/eslint-plugin": "^8.12.0",
"@typescript-eslint/parser": "^8.12.0",
"cross-env": "^7.0.3",
"eslint": "^9.14.0",
"eslint-config-next": "15.0.2",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.0",
"globals": "^15.12.0",
"husky": "^9.0.0",
"lint-staged": "^13.0.0",
"mdcast": "0.0.12",
"notion-downloader": "^0.1.11",
"prettier": "^3.0.0",
"prettier-plugin-tailwindcss": "^0.5.11",
"prisma": "^5.12.1",
"rehype-pretty-code": "^0.14.0",
"typescript": "^5.1.3"
},
"lint-staged": {
"*.+(js|jsx|ts|tsx)": [
"eslint --fix"
],
"*.+(js|jsx|ts|tsx|json|css|md|mdx)": [
"prettier --write"
]
},
"packageManager": "[email protected]"
}