generated from danybeltran/nextjs-typescript-and-mongodb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
95 lines (95 loc) · 2.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
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
{
"name": "next-11",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "npx prisma generate dev --name init && next dev",
"build": "npx prisma generate init && next build",
"migrate:dev": "npx prisma generate dev --name init",
"start": "next start"
},
"dependencies": {
"@agoose77/markdown-it-mermaid": "^1.1.0",
"@ckeditor/ckeditor5-build-classic": "^43.3.1",
"@ckeditor/ckeditor5-react": "^9.3.1",
"@hookform/resolvers": "^3.9.1",
"@million/lint": "^1.0.14",
"@monaco-editor/react": "^4.6.0",
"@prisma/client": "^6.0.1",
"@radix-ui/react-accordion": "^1.2.1",
"@radix-ui/react-alert-dialog": "^1.1.2",
"@radix-ui/react-avatar": "^1.1.1",
"@radix-ui/react-context-menu": "^2.2.2",
"@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-navigation-menu": "^1.2.1",
"@radix-ui/react-popover": "^1.1.2",
"@radix-ui/react-select": "^2.1.2",
"@radix-ui/react-slot": "^1.1.0",
"@radix-ui/react-toast": "^1.2.2",
"@traptitech/markdown-it-katex": "^3.6.0",
"atomic-state": "^2.9.97",
"autoprefixer": "^10.4.20",
"axios": "^1.7.9",
"bs-icon": "^0.0.8",
"cdn": "^1.1.1",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"copy-to-clipboard": "^3.3.3",
"date-fns": "^4.1.0",
"dom-to-image": "^2.6.0",
"easymde": "^2.18.0",
"emmet-monaco-es": "^5.5.0",
"geist": "^1.3.1",
"html2canvas": "^1.4.1",
"http-react": "^3.7.4",
"js-cookie": "^3.0.5",
"jspdf": "^2.5.2",
"katex": "^0.16.15",
"latex.js": "^0.12.6",
"lucide-react": "^0.468.0",
"markdown-it": "^14.1.0",
"markdown-it-checkbox": "^1.1.0",
"markdown-it-katex": "^2.0.3",
"markdown-it-latex": "^0.2.0",
"markdown-it-latex2img": "^0.0.6",
"markdown-it-math": "^4.1.1",
"markdown-it-mermaid": "^0.2.5",
"markdown-it-texmath": "^1.0.0",
"next": "^15.1.0",
"next-auth": "^4.24.11",
"next-themes": "^0.4.4",
"postcss": "^8.4.49",
"prop-types": "^15.8.1",
"react": "^19.0.0",
"react-contenteditable": "^3.3.7",
"react-dom": "^19.0.0",
"react-hook-form": "^7.54.0",
"react-icons": "^5.4.0",
"react-kuh": "^0.1.3",
"react-latex": "^2.0.0",
"react-markdown": "^9.0.1",
"react-pdf-html": "^2.1.2",
"react-simplemde-editor": "^5.2.0",
"react-textarea-autosize": "^8.5.6",
"sass": "^1.82.0",
"tailwind-merge": "^2.5.5",
"tailwindcss": "^3.4.16",
"tailwindcss-animate": "^1.0.7",
"zod": "^3.24.1"
},
"devDependencies": {
"@tailwindcss/typography": "^0.5.15",
"@types/js-cookie": "^3.0.6",
"@types/katex": "^0.16.7",
"@types/markdown-it": "^14.1.2",
"@types/mongoose": "^5.11.97",
"@types/node": "^22.10.2",
"@types/react": "^19.0.1",
"@types/react-dom": "^19.0.2",
"@types/react-latex": "^2.0.3",
"prisma": "^6.0.1",
"typescript": "^5.7.2"
}
}