-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 1.95 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 1.95 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
{
"name": "realtime-editor",
"version": "0.1.0",
"private": true,
"dependencies": {
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.0",
"@google/generative-ai": "^0.21.0",
"@monaco-editor/react": "^4.6.0",
"@mui/material": "^6.3.0",
"@testing-library/jest-dom": "^5.16.2",
"@testing-library/react": "^12.1.3",
"@testing-library/user-event": "^13.5.0",
"@tldraw/sync": "^3.7.2",
"axios": "^1.7.9",
"codemirror": "^5.65.2",
"dompurify": "^3.2.3",
"express": "^4.17.3",
"monaco-editor": "^0.52.2",
"peer": "^1.0.2",
"peerjs": "^1.5.4",
"prosemirror-example-setup": "^1.2.3",
"prosemirror-model": "^1.24.1",
"prosemirror-schema-basic": "^1.2.3",
"prosemirror-state": "^1.4.3",
"prosemirror-view": "^1.37.1",
"randomcolor": "^0.6.2",
"react": "^18.3.1",
"react-avatar": "^4.0.0",
"react-dom": "^18.3.1",
"react-hot-toast": "^2.2.0",
"react-router-dom": "^6.2.1",
"react-scripts": "5.0.0",
"react-webcam": "^7.2.0",
"socket.io": "^4.4.1",
"socket.io-client": "^4.4.1",
"tldraw": "^3.13.1",
"uuid": "^8.3.2",
"web-vitals": "^2.1.4",
"y-codemirror": "^3.0.1",
"y-monaco": "^0.1.6",
"y-webrtc": "^10.3.0",
"y-websocket": "^2.1.0",
"yjs": "^13.6.21"
},
"scripts": {
"start:front": "react-scripts start",
"start": "npm run start:front && npm run server:prod",
"build": "react-scripts build",
"server:dev": "nodemon server.js",
"server:prod": "node server.js",
"test": "react-scripts test",
"eject": "react-scripts eject"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"nodemon": "^2.0.15"
}
}