-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
85 lines (85 loc) · 2.75 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
{
"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 .",
"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": "^2.15.0",
"@packages/tiptap-extension-color-with-classes": "*",
"@packages/tiptap-extension-comment-collaboration": "*",
"@packages/tiptap-extension-image-delete-callback": "*",
"@tailwindcss/postcss": "^4.0.0",
"@tailwindcss/vite": "^4.0.0",
"@tiptap/core": "^2.11.3",
"@tiptap/extension-collaboration": "^2.11.3",
"@tiptap/extension-collaboration-cursor": "^2.11.3",
"@tiptap/extension-color": "^2.11.3",
"@tiptap/extension-image": "^2.11.3",
"@tiptap/extension-link": "^2.11.3",
"@tiptap/extension-placeholder": "^2.11.3",
"@tiptap/extension-table": "^2.11.3",
"@tiptap/extension-table-cell": "^2.11.3",
"@tiptap/extension-table-header": "^2.11.3",
"@tiptap/extension-table-row": "^2.11.3",
"@tiptap/extension-text-style": "^2.11.3",
"@tiptap/extension-underline": "^2.11.3",
"@tiptap/pm": "^2.11.3",
"@tiptap/react": "^2.11.3",
"@tiptap/starter-kit": "^2.11.3",
"i18next": "^24.2.2",
"i18next-browser-languagedetector": "^8.0.2",
"jspdf": "^2.5.2",
"postcss": "^8.5.1",
"qr-code-styling": "^1.9.1",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-i18next": "^15.4.0",
"react-router": "^7.1.3",
"tailwindcss": "^4.0.0",
"uuid": "^11.0.5",
"y-prosemirror": "^1.2.15",
"yjs": "^13.6.23",
"html2canvas-pro": "^1.5.8"
},
"devDependencies": {
"@eslint/js": "^9.19.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.2.0",
"@types/node": "^22.13.0",
"@types/react": "^19.0.8",
"@types/react-dom": "^19.0.3",
"@vitejs/plugin-react": "^4.3.1",
"autoprefixer": "^10.4.20",
"eslint": "^9.19.0",
"eslint-plugin-react-hooks": "^5.1.0",
"eslint-plugin-react-refresh": "^0.4.18",
"globals": "^15.14.0",
"jsdom": "^26.0.0",
"prettier": "^3.4.2",
"typescript": "^5.7.3",
"typescript-eslint": "^8.22.0",
"vite": "^6.0.11",
"vitest": "^3.0.4"
},
"optionalDependencies": {
"@rollup/rollup-linux-x64-musl": "4.32.0"
},
"workspaces": [
"packages/tiptap-extension-comment-collaboration",
"packages/tiptap-extension-color-with-classes",
"packages/tiptap-extension-image-delete-callback"
]
}