-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 2.51 KB
/
Copy pathpackage.json
File metadata and controls
58 lines (58 loc) · 2.51 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
{
"dependencies": {
"@liveblocks/client": "^2.0.0",
"@liveblocks/react": "^2.0.0",
"@liveblocks/react-tiptap": "^2.0.0",
"@liveblocks/react-ui": "^2.0.0",
"@liveblocks/yjs": "^2.0.0",
"@rails/actiontext": "^8.0.200",
"@tiptap/core": "^2.0.0",
"@tiptap/extension-character-count": "^2.0.0",
"@tiptap/extension-collaboration": "^2.0.0",
"@tiptap/extension-collaboration-cursor": "^2.0.0",
"@tiptap/extension-color": "^2.0.0",
"@tiptap/extension-focus": "^2.0.0",
"@tiptap/extension-font-family": "^2.0.0",
"@tiptap/extension-highlight": "^2.0.0",
"@tiptap/extension-image": "^2.0.0",
"@tiptap/extension-link": "^2.0.0",
"@tiptap/extension-mention": "^2.0.0",
"@tiptap/extension-placeholder": "^2.0.0",
"@tiptap/extension-subscript": "^2.0.0",
"@tiptap/extension-superscript": "^2.0.0",
"@tiptap/extension-table": "^2.0.0",
"@tiptap/extension-table-cell": "^2.0.0",
"@tiptap/extension-table-header": "^2.0.0",
"@tiptap/extension-table-row": "^2.0.0",
"@tiptap/extension-task-item": "^2.0.0",
"@tiptap/extension-task-list": "^2.0.0",
"@tiptap/extension-text-align": "^2.0.0",
"@tiptap/extension-text-style": "^2.0.0",
"@tiptap/extension-typography": "^3.19.0",
"@tiptap/extension-underline": "^2.0.0",
"@tiptap/extension-youtube": "^2.0.0",
"@tiptap/pm": "^2.0.0",
"@tiptap/react": "^2.0.0",
"@tiptap/starter-kit": "^2.0.0",
"@tiptap/suggestion": "^2.0.0",
"@types/react": "^18.0.0",
"daisyui": "^5.0.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"stream-chat": "^9.26.0",
"stream-chat-react": "^13.13.0",
"tippy.js": "^6.3.7",
"trix": "^2.1.15",
"y-prosemirror": "^1.2.0",
"y-protocols": "^1.0.0",
"yjs": "^13.0.0"
},
"devDependencies": {
"esbuild": "^0.27.0"
},
"scripts": {
"build": "esbuild app/javascript/react/*.jsx --bundle --sourcemap --format=esm --outdir=app/assets/builds --public-path=/assets --loader:.jsx=jsx --loader:.eot=file --loader:.woff=file --loader:.woff2=file --loader:.ttf=file --loader:.svg=file --loader:.css=css",
"build:css": "tailwindcss -i ./app/assets/stylesheets/application.tailwind.css -o ./app/assets/builds/tailwind.css --minify",
"build:production": "NODE_ENV=production esbuild app/javascript/react/*.jsx --bundle --minify --format=esm --outdir=app/assets/builds --public-path=/assets --loader:.jsx=jsx --loader:.eot=file --loader:.woff=file --loader:.woff2=file --loader:.ttf=file --loader:.svg=file --loader:.css=css"
}
}