-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.38 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2.38 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
{
"name": "wild-salt-blog",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "node scripts/check-merge-conflicts.js && next build && node scripts/fix-standalone-api.js",
"start": "next start -p 3000",
"lint": "next lint",
"fix-api": "node scripts/fix-standalone-api.js",
"check-conflicts": "node scripts/check-merge-conflicts.js"
},
"dependencies": {
"@editorjs/checklist": "^1.6.0",
"@editorjs/code": "^2.9.3",
"@editorjs/delimiter": "^1.4.2",
"@editorjs/editorjs": "^2.30.8",
"@editorjs/embed": "^2.7.6",
"@editorjs/header": "^2.8.8",
"@editorjs/image": "^2.10.2",
"@editorjs/inline-code": "^1.5.1",
"@editorjs/list": "^2.0.8",
"@editorjs/marker": "^1.4.0",
"@editorjs/paragraph": "^2.11.7",
"@editorjs/quote": "^2.7.6",
"@editorjs/table": "^2.4.5",
"@editorjs/warning": "^1.4.1",
"@tiptap/extension-blockquote": "^2.12.0",
"@tiptap/extension-bubble-menu": "^2.12.0",
"@tiptap/extension-bullet-list": "^2.12.0",
"@tiptap/extension-code-block": "^2.12.0",
"@tiptap/extension-floating-menu": "^2.12.0",
"@tiptap/extension-highlight": "^2.12.0",
"@tiptap/extension-image": "^2.12.0",
"@tiptap/extension-link": "^2.12.0",
"@tiptap/extension-ordered-list": "^2.12.0",
"@tiptap/extension-placeholder": "^2.12.0",
"@tiptap/extension-task-item": "^2.12.0",
"@tiptap/extension-task-list": "^2.12.0",
"@tiptap/pm": "^2.12.0",
"@tiptap/react": "^2.12.0",
"@tiptap/starter-kit": "^2.12.0",
"@types/uuid": "^10.0.0",
"axios": "^1.9.0",
"date-fns": "^4.1.0",
"framer-motion": "^10.18.0",
"jose": "^6.0.11",
"jsonwebtoken": "^9.0.2",
"mongodb": "^6.3.0",
"mongoose": "^8.14.3",
"next": "^15.3.2",
"next-auth": "^4.24.5",
"pinyin-pro": "^3.26.0",
"react": "^18",
"react-dom": "^18",
"react-hook-form": "^7.49.3",
"react-hot-toast": "^2.5.2",
"react-quill": "^0.0.2",
"sharp": "^0.34.1",
"swr": "^2.2.4",
"tailwindcss-typography": "^3.1.0",
"uuid": "^11.1.0",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/jsonwebtoken": "^9.0.9",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"autoprefixer": "^10.0.1",
"eslint": "^8",
"eslint-config-next": "14.1.0",
"postcss": "^8",
"tailwindcss": "^3.3.0",
"typescript": "^5"
}
}