-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
107 lines (107 loc) · 3.18 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": "blog",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev --turbopack",
"build": "next build",
"postbuild": "next-sitemap",
"start": "next start",
"lint": "next lint",
"format": "prettier --write .",
"prepare": "husky"
},
"dependencies": {
"@ai-sdk/openai": "^0.0.72",
"@auth/prisma-adapter": "^2.7.3",
"@bytemd/plugin-breaks": "^1.21.0",
"@bytemd/plugin-footnotes": "^1.12.4",
"@bytemd/plugin-frontmatter": "^1.21.0",
"@bytemd/plugin-gemoji": "^1.21.0",
"@bytemd/plugin-gfm": "^1.21.0",
"@bytemd/plugin-highlight-ssr": "^1.21.0",
"@bytemd/plugin-math": "^1.21.0",
"@bytemd/plugin-math-ssr": "^1.21.0",
"@bytemd/plugin-medium-zoom": "^1.21.0",
"@bytemd/plugin-mermaid": "^1.21.0",
"@bytemd/react": "^1.21.0",
"@iconify/react": "^5.0.2",
"@prisma/client": "^5.22.0",
"@radix-ui/react-alert-dialog": "^1.1.2",
"@radix-ui/react-avatar": "^1.1.1",
"@radix-ui/react-dialog": "^1.1.2",
"@radix-ui/react-dropdown-menu": "^2.1.2",
"@radix-ui/react-label": "^2.1.0",
"@radix-ui/react-popover": "^1.1.2",
"@radix-ui/react-scroll-area": "^1.2.0",
"@radix-ui/react-separator": "^1.1.0",
"@radix-ui/react-slot": "^1.1.0",
"@radix-ui/react-tabs": "^1.1.1",
"@radix-ui/react-toast": "^1.2.2",
"@radix-ui/react-tooltip": "^1.1.3",
"@tailwindcss/typography": "^0.5.15",
"@vercel/analytics": "^1.3.2",
"@vercel/kv": "^3.0.0",
"ai": "^3.4.33",
"bcrypt": "^5.1.1",
"bytemd": "^1.21.0",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"dayjs": "^1.11.13",
"framer-motion": "^11.9.0",
"highlight.js": "^11.10.0",
"jsonwebtoken": "^9.0.2",
"juejin-markdown-themes": "^1.34.0",
"lucide-react": "^0.456.0",
"next": "15.0.3",
"next-auth": "^4.24.10",
"next-themes": "^0.4.3",
"nodemailer": "^6.9.16",
"react": "19.0.0-rc-66855b96-20241106",
"react-dom": "19.0.0-rc-66855b96-20241106",
"react-markdown": "^9.0.1",
"react-p5": "^1.4.1",
"react-spinners": "^0.14.1",
"remark-gfm": "^4.0.0",
"rss": "^1.2.2",
"sharp": "^0.33.5",
"sonner": "^1.7.0",
"tailwind-merge": "^2.5.4",
"tailwindcss-animate": "^1.0.7",
"use-immer": "^0.10.0",
"uuid": "^11.0.2"
},
"devDependencies": {
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@types/jsonwebtoken": "^9.0.7",
"@types/node": "^22.9.0",
"@types/nodemailer": "^6.4.16",
"@types/react": "npm:types-react@19.0.0-rc.1",
"@types/react-dom": "npm:types-react-dom@19.0.0-rc.1",
"@types/rss": "^0.0.32",
"@types/uuid": "^10.0.0",
"eslint": "^8",
"eslint-config-next": "15.0.3",
"eslint-config-prettier": "^9.1.0",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"next-sitemap": "^4.2.3",
"postcss": "^8.4.47",
"prettier": "^3.3.3",
"sass": "^1.79.4",
"tailwindcss": "^3.4.14",
"typescript": "^5.6.3"
},
"lint-staged": {
"**/*.{tsx,ts}": [
"eslint --fix"
]
},
"pnpm": {
"overrides": {
"@types/react": "npm:types-react@19.0.0-rc.1",
"@types/react-dom": "npm:types-react-dom@19.0.0-rc.1"
}
}
}