-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
109 lines (109 loc) · 3.5 KB
/
package.json
File metadata and controls
109 lines (109 loc) · 3.5 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
{
"name": "protein-viewer",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"lint": "eslint .",
"preview": "vite preview",
"download": "node scripts/download_models.js"
},
"dependencies": {
"@supabase/supabase-js": "^2.48.1",
"@tiptap/core": "3.20.1",
"@tiptap/extension-blockquote": "3.20.1",
"@tiptap/extension-bold": "3.20.1",
"@tiptap/extension-bullet-list": "3.20.1",
"@tiptap/extension-code": "3.20.1",
"@tiptap/extension-code-block": "3.20.1",
"@tiptap/extension-document": "3.20.1",
"@tiptap/extension-dropcursor": "3.20.1",
"@tiptap/extension-gapcursor": "3.20.1",
"@tiptap/extension-hard-break": "3.20.1",
"@tiptap/extension-heading": "3.20.1",
"@tiptap/extension-history": "3.20.1",
"@tiptap/extension-horizontal-rule": "3.20.1",
"@tiptap/extension-italic": "3.20.1",
"@tiptap/extension-list": "3.20.1",
"@tiptap/extension-list-item": "3.20.1",
"@tiptap/extension-list-keymap": "3.20.1",
"@tiptap/extension-ordered-list": "3.20.1",
"@tiptap/extension-paragraph": "3.20.1",
"@tiptap/extension-strike": "3.20.1",
"@tiptap/extension-text": "3.20.1",
"@tiptap/extensions": "3.20.1",
"@tiptap/extension-color": "3.20.1",
"@tiptap/extension-highlight": "3.20.1",
"@tiptap/extension-image": "3.20.1",
"@tiptap/extension-link": "3.20.1",
"@tiptap/extension-mention": "3.20.1",
"@tiptap/extension-placeholder": "3.20.1",
"@tiptap/extension-subscript": "3.20.1",
"@tiptap/extension-superscript": "3.20.1",
"@tiptap/extension-table": "3.20.1",
"@tiptap/extension-table-cell": "3.20.1",
"@tiptap/extension-table-header": "3.20.1",
"@tiptap/extension-table-row": "3.20.1",
"@tiptap/extension-task-item": "3.20.1",
"@tiptap/extension-task-list": "3.20.1",
"@tiptap/extension-text-align": "3.20.1",
"@tiptap/extension-text-style": "3.20.1",
"@tiptap/extension-underline": "3.20.1",
"@tiptap/pm": "3.20.1",
"@tiptap/suggestion": "3.20.1",
"@tiptap/react": "3.20.1",
"@tiptap/starter-kit": "3.20.1",
"@types/peerjs": "^0.0.30",
"@types/qrcode": "^1.5.6",
"clsx": "^2.1.1",
"driver.js": "^1.4.0",
"html2canvas": "^1.4.1",
"jspdf": "^3.0.4",
"jspdf-autotable": "^5.0.2",
"jszip": "^3.10.1",
"lucide-react": "^0.562.0",
"molstar": "^5.6.0",
"ngl": "^2.4.0",
"pdfjs-dist": "^5.4.530",
"peerjs": "^1.5.5",
"qrcode": "^1.5.4",
"react": "^19.2.0",
"react-colorful": "^5.6.1",
"react-dom": "^19.2.0",
"react-is": "^19.0.0",
"react-markdown": "^10.1.0",
"react-router-dom": "^6.30.3",
"recharts": "^3.8.0",
"remark-gfm": "^4.0.1",
"sass": "^1.97.3",
"tailwind-merge": "^3.4.0",
"tippy.js": "^6.3.7",
"tiptap-markdown": "^0.9.0"
},
"devDependencies": {
"@eslint/js": "^9.39.1",
"@tailwindcss/postcss": "^4.1.18",
"@tailwindcss/typography": "^0.5.19",
"@types/node": "^24.10.1",
"@types/react": "^19.2.5",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^5.1.1",
"autoprefixer": "^10.4.23",
"eslint": "^9.39.1",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-react-refresh": "^0.4.24",
"gh-pages": "^6.3.0",
"globals": "^16.5.0",
"postcss": "^8.5.6",
"tailwindcss": "^4.1.18",
"typescript": "~5.9.3",
"typescript-eslint": "^8.46.4",
"vite": "^7.2.4",
"vite-plugin-pwa": "^1.2.0"
},
"overrides": {
"pngjs": "^6.0.0"
}
}