-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 2.79 KB
/
package.json
File metadata and controls
92 lines (92 loc) · 2.79 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
{
"private": true,
"scripts": {
"build": "next build",
"dev": "next dev",
"lint": "next lint",
"prettier": "prettier --write --ignore-unknown .",
"prettier:check": "prettier --check --ignore-unknown .",
"seed": "node -r dotenv/config ./scripts/seed.js",
"start": "next start"
},
"dependencies": {
"@formatjs/intl-localematcher": "^0.5.4",
"@heroicons/react": "^2.0.18",
"@mdx-js/loader": "^3.0.1",
"@mdx-js/react": "^3.0.1",
"@next/mdx": "^14.2.5",
"@nextui-org/dropdown": "^2.1.29",
"@nextui-org/react": "^2.4.6",
"@radix-ui/react-avatar": "^1.1.0",
"@radix-ui/react-dropdown-menu": "^2.1.1",
"@radix-ui/react-icons": "^1.3.0",
"@radix-ui/react-label": "^2.1.0",
"@radix-ui/react-scroll-area": "^1.1.0",
"@radix-ui/react-slot": "^1.1.0",
"@radix-ui/react-switch": "^1.1.1",
"@tailwindcss/forms": "^0.5.7",
"@types/mdx": "^2.0.13",
"@types/negotiator": "^0.6.3",
"@types/node": "20.5.7",
"@types/pg-format": "^1.0.5",
"@uiw/react-markdown-preview": "^5.1.2",
"@uiw/react-md-editor": "^4.0.4",
"@vercel/analytics": "^1.3.1",
"@vercel/postgres": "^0.9.0",
"autoprefixer": "10.4.15",
"bcrypt": "^5.1.1",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"cookies-next": "^4.2.1",
"framer-motion": "^11.3.21",
"install": "^0.13.0",
"lucide-react": "^0.445.0",
"negotiator": "^0.6.3",
"next": "14.2.5",
"next-auth": "5.0.0-beta.20",
"next-cloudinary": "^6.6.2",
"next-mdx-remote": "^5.0.0",
"next-remove-imports": "^1.0.12",
"next-share": "^0.27.0",
"next-themes": "^0.3.0",
"parse-numeric-range": "^1.3.0",
"pg-format": "^1.0.4",
"postcss": "8.4.31",
"prismjs": "^1.29.0",
"react": "^18.3.1",
"react-copy-to-clipboard": "^5.1.0",
"react-dom": "^18.3.1",
"react-markdown": "^9.0.1",
"react-syntax-highlighter": "^15.5.0",
"react-tooltip": "^5.28.0",
"rehype-raw": "^7.0.0",
"remark-gfm": "^4.0.0",
"tailwind-merge": "^2.5.2",
"tailwindcss": "3.4.0",
"tailwindcss-animate": "^1.0.7",
"typescript": "5.2.2",
"use-debounce": "^9.0.4",
"vercel": "^32.3.0",
"zod": "^3.22.2",
"zustand": "^4.5.4"
},
"devDependencies": {
"@tailwindcss/typography": "^0.5.13",
"@types/bcrypt": "^5.0.1",
"@types/react": "18.2.21",
"@types/react-dom": "18.2.14",
"@types/react-syntax-highlighter": "^15.5.13",
"@vercel/style-guide": "^5.0.1",
"babel-loader": "^9.1.3",
"babel-plugin-transform-remove-imports": "^1.8.0",
"dotenv": "^16.3.1",
"eslint": "^8.52.0",
"eslint-config-next": "15.0.0-rc.0",
"eslint-config-prettier": "9.0.0",
"prettier": "^3.3.2",
"prettier-plugin-tailwindcss": "0.5.4"
},
"engines": {
"node": ">=20.0.0"
}
}