forked from pages-cms/pages-cms
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
106 lines (106 loc) · 3.38 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
{
"name": "pages-cms",
"description": "A user-friendly CMS for Next.js, Astro, Hugo, Nuxt, Jekyll or any other static site generator.",
"license": "MIT",
"author": {
"name": "Ronan Berder"
},
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build && npm run db:migrate",
"start": "next start",
"lint": "next lint",
"db:generate": "npx drizzle-kit generate",
"db:migrate": "npx drizzle-kit migrate"
},
"dependencies": {
"@codemirror/lang-html": "^6.4.9",
"@codemirror/lang-javascript": "^6.2.2",
"@codemirror/lang-json": "^6.0.1",
"@codemirror/lang-markdown": "^6.2.5",
"@codemirror/language-data": "^6.5.1",
"@codemirror/legacy-modes": "^6.4.0",
"@codemirror/lint": "^6.8.0",
"@dnd-kit/modifiers": "^7.0.0",
"@dnd-kit/sortable": "^8.0.0",
"@hookform/resolvers": "^3.4.2",
"@libsql/client": "^0.8.1",
"@ltd/j-toml": "^1.38.0",
"@lucia-auth/adapter-drizzle": "^1.0.7",
"@next/env": "^14.2.4",
"@radix-ui/react-alert-dialog": "^1.0.5",
"@radix-ui/react-avatar": "^1.0.4",
"@radix-ui/react-dialog": "^1.1.1",
"@radix-ui/react-dropdown-menu": "^2.0.6",
"@radix-ui/react-label": "^2.0.2",
"@radix-ui/react-popover": "^1.1.1",
"@radix-ui/react-scroll-area": "^1.0.5",
"@radix-ui/react-select": "^2.1.1",
"@radix-ui/react-slot": "^1.0.2",
"@radix-ui/react-switch": "^1.0.3",
"@radix-ui/react-tabs": "^1.1.0",
"@radix-ui/react-tooltip": "^1.0.7",
"@react-email/components": "^0.0.22",
"@tanstack/match-sorter-utils": "^8.15.1",
"@tanstack/react-table": "^8.17.3",
"@tiptap/extension-bubble-menu": "^2.4.0",
"@tiptap/extension-image": "^2.4.0",
"@tiptap/extension-link": "^2.4.0",
"@tiptap/extension-placeholder": "^2.4.0",
"@tiptap/extension-table": "^2.5.7",
"@tiptap/extension-table-cell": "^2.5.7",
"@tiptap/extension-table-header": "^2.5.7",
"@tiptap/extension-table-row": "^2.5.7",
"@tiptap/extension-text-align": "^2.5.7",
"@tiptap/extension-underline": "^2.4.0",
"@tiptap/pm": "^2.4.0",
"@tiptap/react": "^2.4.0",
"@tiptap/starter-kit": "^2.4.0",
"@tiptap/suggestion": "^2.4.0",
"@uiw/codemirror-theme-github": "^4.22.1",
"@uiw/react-codemirror": "^4.22.1",
"arctic": "^1.8.0",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"cmdk": "^1.0.0",
"date-fns": "^3.6.0",
"drizzle-orm": "^0.31.2",
"install": "^0.13.0",
"joplin-turndown-plugin-gfm": "^1.0.12",
"lucia": "^3.2.0",
"lucide-react": "^0.378.0",
"marked": "^12.0.2",
"next": "^14.2.20",
"next-themes": "^0.3.0",
"octokit": "^4.0.2",
"react": "^18.3.1",
"react-day-picker": "^8.10.1",
"react-dom": "^18.3.1",
"react-hook-form": "^7.51.5",
"resend": "^3.5.0",
"slugify": "^1.6.6",
"sonner": "^1.4.41",
"tailwind-merge": "^2.3.0",
"tailwindcss-animate": "^1.0.7",
"turndown": "^7.2.0",
"use-debounce": "^10.0.0",
"yaml": "^2.4.2",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/node": "^20.12.8",
"@types/react": "^18.3.1",
"@types/react-dom": "^18.3.0",
"@types/turndown": "^5.0.4",
"drizzle-kit": "^0.22.7",
"eslint": "^8.57.0",
"eslint-config-next": "14.2.3",
"npm": "^10.8.1",
"postcss": "^8.4.38",
"tailwindcss": "^3.4.3",
"typescript": "^5.4.5",
"uninstall": "^0.0.0"
}
}