forked from xun082/DocFlow
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
214 lines (214 loc) · 7.27 KB
/
package.json
File metadata and controls
214 lines (214 loc) · 7.27 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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
{
"name": "tiptap-demos-next",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint \"**/*.{ts,tsx,js,jsx}\" --fix",
"lint:ci": "eslint \"**/*.{ts,tsx,js,jsx}\"",
"format": "prettier --write \"**/*.{ts,tsx,js,jsx,cjs,mjs,json}\"",
"format:ci": "prettier --list-different \"**/*.{ts,tsx,js,jsx}\"",
"postinstall": "husky install",
"commit": "git-cz",
"prepare": "husky",
"type-check": "tsc --noEmit --project tsconfig.json"
},
"dependencies": {
"@antv/hierarchy": "^0.6.14",
"@antv/x6": "^2.18.1",
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/modifiers": "^9.0.0",
"@dnd-kit/sortable": "^10.0.0",
"@dnd-kit/utilities": "^3.2.2",
"@excalidraw/excalidraw": "^0.18.0",
"@excalidraw/mermaid-to-excalidraw": "^1.1.2",
"@fingerprintjs/fingerprintjs": "^4.6.2",
"@floating-ui/dom": "^1.7.3",
"@fontsource/inter": "^5.2.5",
"@hocuspocus/provider": "^3.1.1",
"@hocuspocus/server": "^3.1.1",
"@hookform/resolvers": "^5.1.1",
"@radix-ui/react-avatar": "^1.1.10",
"@radix-ui/react-checkbox": "^1.3.3",
"@radix-ui/react-dialog": "^1.1.14",
"@radix-ui/react-dropdown-menu": "^2.1.14",
"@radix-ui/react-label": "^2.1.7",
"@radix-ui/react-popover": "^1.1.14",
"@radix-ui/react-progress": "^1.1.7",
"@radix-ui/react-radio-group": "^1.3.8",
"@radix-ui/react-select": "^2.2.5",
"@radix-ui/react-slot": "^1.2.3",
"@radix-ui/react-tooltip": "^1.2.6",
"@svgr/webpack": "^8.1.0",
"@tailwindcss/forms": "^0.5.10",
"@tanstack/react-query": "^5.85.5",
"@tanstack/react-query-devtools": "^5.85.5",
"@tiptap/core": "^3.0.7",
"@tiptap/extension-bullet-list": "^3.0.7",
"@tiptap/extension-character-count": "^3.0.7",
"@tiptap/extension-code-block": "^3.0.7",
"@tiptap/extension-code-block-lowlight": "^3.0.7",
"@tiptap/extension-collaboration": "^3.0.7",
"@tiptap/extension-collaboration-caret": "^3.0.7",
"@tiptap/extension-color": "^3.0.7",
"@tiptap/extension-details": "^3.0.7",
"@tiptap/extension-details-content": "^2.26.1",
"@tiptap/extension-details-summary": "^2.26.1",
"@tiptap/extension-document": "^3.0.7",
"@tiptap/extension-drag-handle": "^3.0.7",
"@tiptap/extension-drag-handle-react": "^3.0.7",
"@tiptap/extension-dropcursor": "^3.0.7",
"@tiptap/extension-emoji": "^3.0.7",
"@tiptap/extension-file-handler": "^3.0.7",
"@tiptap/extension-focus": "^3.0.7",
"@tiptap/extension-font-family": "^3.0.7",
"@tiptap/extension-hard-break": "^3.0.7",
"@tiptap/extension-heading": "^3.0.7",
"@tiptap/extension-highlight": "^3.0.7",
"@tiptap/extension-horizontal-rule": "^3.0.7",
"@tiptap/extension-image": "^3.0.7",
"@tiptap/extension-link": "^3.0.7",
"@tiptap/extension-mathematics": "^3.0.7",
"@tiptap/extension-node-range": "^3.0.7",
"@tiptap/extension-ordered-list": "^3.0.7",
"@tiptap/extension-paragraph": "^3.0.7",
"@tiptap/extension-placeholder": "^3.0.7",
"@tiptap/extension-subscript": "^3.0.7",
"@tiptap/extension-superscript": "^3.0.7",
"@tiptap/extension-table": "^3.0.7",
"@tiptap/extension-table-header": "^3.0.7",
"@tiptap/extension-table-of-contents": "^3.0.7",
"@tiptap/extension-table-row": "^3.0.7",
"@tiptap/extension-task-item": "^3.0.7",
"@tiptap/extension-task-list": "^3.0.7",
"@tiptap/extension-text": "^3.0.7",
"@tiptap/extension-text-align": "^3.0.7",
"@tiptap/extension-text-style": "^3.0.7",
"@tiptap/extension-typography": "^3.0.7",
"@tiptap/extension-underline": "^3.0.7",
"@tiptap/extension-unique-id": "^3.0.7",
"@tiptap/extension-youtube": "^3.4.1",
"@tiptap/extensions": "^3.0.7",
"@tiptap/html": "^3.0.7",
"@tiptap/pm": "^3.0.7",
"@tiptap/react": "^3.0.7",
"@tiptap/starter-kit": "^3.0.7",
"@tiptap/suggestion": "^3.0.7",
"@types/lodash-es": "^4.17.12",
"cal-sans": "^1.0.1",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cmdk": "^1.1.1",
"crypto-js": "^4.2.0",
"date-fns": "^4.1.0",
"file-type": "^21.0.0",
"framer-motion": "^12.12.1",
"hast-util-to-html": "^9.0.5",
"katex": "^0.16.22",
"lodash-es": "^4.17.21",
"lowlight": "^3.3.0",
"lucide-react": "^0.511.0",
"mammoth": "^1.10.0",
"markdown-it": "^14.1.0",
"mdast-util-from-markdown": "^2.0.2",
"mdast-util-gfm": "^3.1.0",
"micromark-extension-gfm": "^3.0.0",
"nanoid": "^5.1.5",
"next": "^15.3.2",
"pdfjs-dist": "^5.4.149",
"plyr": "^3.7.8",
"react": "^19.1.0",
"react-colorful": "^5.6.1",
"react-day-picker": "8.10.1",
"react-dom": "^19.1.0",
"react-hook-form": "^7.60.0",
"react-hot-toast": "^2.5.2",
"react-markdown": "^10.1.0",
"react-resizable-panels": "^3.0.2",
"react-use-audio-player": "^4.0.2",
"recharts": "2.15.4",
"remark": "^15.0.1",
"remark-gfm": "^4.0.1",
"remark-parse": "^11.0.0",
"socket.io-client": "^4.8.1",
"sonner": "^2.0.6",
"tailwind-merge": "^3.3.0",
"tailwindcss-animate": "^1.0.7",
"ua-parser-js": "^2.0.4",
"uuid": "^11.1.0",
"vaul": "^1.1.2",
"y-indexeddb": "^9.0.12",
"y-prosemirror": "^1.3.5",
"y-webrtc": "^10.3.0",
"yjs": "^13.6.27",
"zod": "^3.25.76",
"zustand": "^5.0.6"
},
"devDependencies": {
"@commitlint/cli": "^19.8.0",
"@commitlint/config-conventional": "^19.8.0",
"@playwright/test": "^1.51.1",
"@tailwindcss/postcss": "^4.1.7",
"@tailwindcss/typography": "^0.5.16",
"@types/crypto-js": "^4.2.0",
"@types/js-beautify": "^1.14.3",
"@types/jsonwebtoken": "^9.0.9",
"@types/lodash.debounce": "^4.0.9",
"@types/markdown-it": "^14.1.2",
"@types/node": "22.15.18",
"@types/prettier": "^3.0.0",
"@types/react": "19.1.4",
"@types/react-dom": "19.1.5",
"@types/styled-components": "^5.1.34",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^8.26.1",
"@typescript-eslint/parser": "^8.26.1",
"@vitejs/plugin-react": "^4.3.4",
"@vitest/coverage-v8": "3.0.8",
"@vitest/ui": "3.0.8",
"autoprefixer": "10.4.21",
"commitizen": "^4.3.1",
"cz-git": "^1.11.1",
"eslint": "9.27.0",
"eslint-config-next": "^15.3.2",
"eslint-config-prettier": "^10.1.1",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-next": "^0.0.0",
"eslint-plugin-prettier": "^5.4.0",
"eslint-plugin-react": "^7.37.4",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-tailwindcss": "^3.18.0",
"husky": "^9.1.7",
"js-beautify": "^1.15.4",
"lint-staged": "^15.4.3",
"postcss": "8.5.3",
"postcss-nesting": "^13.0.1",
"prettier": "^3.5.3",
"tailwindcss": "4.1.7",
"tw-animate-css": "^1.3.0",
"typescript": "5.8.3",
"vitest": "^3.0.8"
},
"lint-staged": {
"*.{ts,tsx,mjs}": [
"eslint"
],
"*.{tsx,ts,json}": [
"prettier --check"
]
},
"config": {
"commitizen": {
"path": "node_modules/cz-git"
}
},
"engines": {
"node": ">=20",
"pnpm": ">=9.0.0"
},
"engineStrict": true,
"packageManager": "pnpm@9.12.3+sha512.cce0f9de9c5a7c95bef944169cc5dfe8741abfb145078c0d508b868056848a87c81e626246cb60967cbd7fd29a6c062ef73ff840d96b3c86c40ac92cf4a813ee"
}