-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.95 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
{
"name": "linzhe-blog",
"version": "0.1.0",
"private": true,
"scripts": {
"postinstall": "prisma generate",
"dev": "dotenv -e .env.dev.local -- next dev",
"build": "prisma generate && next build",
"start": "next start",
"lint": "next lint",
"prettier-lint": "prettier --write .",
"migrate:deploy": "dotenv -e .env.local -- prisma migrate deploy",
"migrate:dev": "dotenv -e .env.dev.local -- prisma migrate dev --name=dev"
},
"dependencies": {
"@mdx-js/loader": "^2.3.0",
"@mdx-js/react": "^2.3.0",
"@monaco-editor/react": "^4.6.0",
"@next/mdx": "^13.5.4",
"@prisma/client": "^5.4.2",
"@radix-ui/react-slot": "^1.0.2",
"@tailwindcss/typography": "^0.5.10",
"@types/fs-extra": "^11.0.2",
"@types/mdx": "^2.0.8",
"@types/node": "20.5.6",
"@types/react": "18.2.24",
"@types/react-dom": "18.2.7",
"autoprefixer": "10.4.15",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.0",
"eslint": "8.47.0",
"eslint-config-next": "13.4.19",
"eslint-config-prettier": "^9.0.0",
"framer-motion": "^10.16.4",
"fs-extra": "^11.1.1",
"gray-matter": "^4.0.3",
"highlight.js": "^11.9.0",
"immer": "^10.0.3",
"lucide-react": "^0.373.0",
"medium-zoom": "^1.1.0",
"monaco-editor": "^0.46.0",
"next": "14.0.1",
"next-mdx-remote": "^4.4.1",
"next-themes": "^0.2.1",
"next13-progressbar": "^1.0.4",
"postcss": "8.4.28",
"prettier": "^3.0.3",
"prettier-plugin-tailwindcss": "^0.5.6",
"prisma": "^5.4.2",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-loading-skeleton": "^3.3.1",
"rehype-highlight": "^6.0.0",
"rehype-mdx-code-props": "^2.0.0",
"remark": "^14.0.3",
"remark-slug": "^7.0.1",
"tailwind-highlightjs": "^2.0.1",
"tailwind-merge": "^2.2.1",
"tailwindcss": "3.3.3",
"tailwindcss-animate": "^1.0.7",
"typescript": "5.2.2",
"use-immer": "^0.9.0",
"zustand": "^4.4.3"
}
}