-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.3 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
{
"name": "qchat",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "node index.cjs & vite",
"build": "tsc && vite build",
"preview": "vite preview",
"start": "npm run build && node index.cjs"
},
"dependencies": {
"@emotion/react": "^11.10.0",
"@mantine/core": "^6.0.7",
"@mantine/form": "^6.0.7",
"@mantine/hooks": "^6.0.7",
"@mantine/notifications": "^6.0.7",
"@mantine/tiptap": "^6.0.7",
"@tabler/icons-react": "^2.15.0",
"@tiptap/extension-highlight": "^2.0.2",
"@tiptap/extension-link": "^2.0.2",
"@tiptap/extension-subscript": "^2.0.2",
"@tiptap/extension-superscript": "^2.0.2",
"@tiptap/extension-text-align": "^2.0.2",
"@tiptap/extension-underline": "^2.0.2",
"@tiptap/pm": "^2.0.2",
"@tiptap/react": "^2.0.2",
"@tiptap/starter-kit": "^2.0.2",
"express": "^4.18.2",
"moment": "^2.29.4",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-scroll-to-bottom": "^4.2.0",
"react-youtube": "^9.0.3",
"socket.io": "^4.5.4",
"socket.io-client": "^4.5.1"
},
"devDependencies": {
"@types/node": "^18.6.5",
"@types/react": "^18.0.15",
"@types/react-dom": "^18.0.6",
"@types/react-scroll-to-bottom": "^4.2.0",
"@types/socket.io-client": "^3.0.0",
"@vitejs/plugin-react": "^2.0.0",
"typescript": "^4.6.4",
"vite": "^3.0.0"
}
}