This repository was archived by the owner on Sep 29, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.85 KB
/
Copy pathpackage.json
File metadata and controls
88 lines (88 loc) · 2.85 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
{
"name": "groupwriter-editor",
"private": true,
"version": "0.0.1",
"type": "module",
"description": "groupwriter editor",
"homepage": "https://b310.de",
"author": "B310 Digital GmbH",
"scripts": {
"dev": "vite --host 0.0.0.0",
"build": "vite build",
"lint": "eslint .",
"type-check": "tsc -p ./tsconfig.json --noEmit",
"lint-check": "eslint --max-warnings=0 --no-fix .",
"test": "vitest",
"prettier-format": "prettier --config .prettierrc 'src/**/*.{ts,tsx}' --write",
"preview": "vite preview"
},
"dependencies": {
"@heroicons/react": "^2.2.0",
"@hocuspocus/provider": "^3.2.3",
"@packages/tiptap-extension-color-with-classes": "*",
"@packages/tiptap-extension-image-delete-callback": "*",
"@packages/tiptap-extension-comment-collaboration": "*",
"@tiptap/core": "^3.6.1",
"@tiptap/extension-collaboration": "^3.6.1",
"@tiptap/extension-collaboration-caret": "^3.6.1",
"@tiptap/extension-color": "^3.6.1",
"@tiptap/extension-image": "^3.6.1",
"@tiptap/extension-link": "^3.6.1",
"@tiptap/extension-placeholder": "^3.6.1",
"@tiptap/extension-table": "^3.6.1",
"@tiptap/extension-table-cell": "^3.6.1",
"@tiptap/extension-table-header": "^3.6.1",
"@tiptap/extension-table-row": "^3.6.1",
"@tiptap/extension-text-style": "^3.6.1",
"@tiptap/extension-underline": "^3.6.1",
"@tiptap/pm": "^3.6.1",
"@tiptap/react": "^3.6.1",
"@tiptap/starter-kit": "^3.6.1",
"html2canvas-pro": "^1.5.11",
"i18next": "^25.5.2",
"i18next-browser-languagedetector": "^8.2.0",
"jspdf": "^3.0.3",
"postcss": "^8.5.6",
"qr-code-styling": "^1.9.2",
"react": "^19.1.1",
"react-dom": "^19.1.1",
"react-i18next": "^16.0.0",
"react-router": "^7.9.2",
"uuid": "^13.0.0",
"y-prosemirror": "^1.3.7",
"yjs": "^13.6.27"
},
"devDependencies": {
"@eslint/js": "^9.36.0",
"@playwright/test": "^1.55.1",
"@tailwindcss/postcss": "^4.1.13",
"@tailwindcss/vite": "^4.1.13",
"@testing-library/jest-dom": "^6.8.0",
"@testing-library/react": "^16.3.0",
"@types/node": "^24.5.2",
"@types/react": "^19.1.13",
"@types/react-dom": "^19.1.9",
"@vitejs/plugin-react": "^5.0.3",
"autoprefixer": "^10.4.21",
"eslint": "^9.36.0",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.20",
"globals": "^16.4.0",
"jsdom": "^27.0.0",
"prettier": "^3.6.2",
"sass-embedded": "^1.93.2",
"tailwindcss": "^4.1.13",
"typescript": "^5.9.2",
"typescript-eslint": "^8.44.1",
"vite": "^7.1.7",
"vitest": "^3.2.4"
},
"optionalDependencies": {
"@rollup/rollup-linux-x64-musl": "4.52.2"
},
"workspaces": [
"packages/tiptap-extension-color-with-classes",
"packages/tiptap-extension-image-delete-callback",
"packages/tiptap-extension-comment-collaboration"
]
}