-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 2.15 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
{
"name": "realtime-editor",
"version": "0.1.0",
"private": true,
"dependencies": {
"@codemirror/lang-css": "^6.3.0",
"@codemirror/lang-go": "^6.0.1",
"@codemirror/lang-html": "^6.4.9",
"@codemirror/lang-java": "^6.0.1",
"@codemirror/lang-javascript": "^6.2.2",
"@codemirror/lang-php": "^6.0.1",
"@codemirror/lang-python": "^6.1.6",
"@codemirror/lang-rust": "^6.0.1",
"@headlessui/react": "^2.1.8",
"@heroicons/react": "^2.1.5",
"@monaco-editor/react": "^4.6.0",
"@radix-ui/react-dropdown-menu": "^2.1.1",
"@radix-ui/react-slot": "^1.1.0",
"@testing-library/jest-dom": "^5.16.2",
"@testing-library/react": "^16.0.1",
"@testing-library/user-event": "^13.5.0",
"@uiw/codemirror-theme-dracula": "^4.23.3",
"@uiw/react-codemirror": "^4.23.2",
"axios": "^1.7.7",
"class-variance-authority": "^0.7.0",
"codemirror": "^5.65.18",
"express": "^4.17.3",
"headlessui": "^0.0.0",
"lucide-react": "^0.446.0",
"monaco-editor": "^0.52.0",
"next-themes": "^0.3.0",
"react": "^18.3.1",
"react-avatar": "^4.0.0",
"react-codemirror2": "^8.0.0",
"react-dom": "^18.3.1",
"react-hot-toast": "^2.2.0",
"react-icons": "^5.3.0",
"react-resizable-panels": "^2.1.4",
"react-router-dom": "^6.2.1",
"react-scripts": "5.0.0",
"socket.io": "^4.4.1",
"socket.io-client": "^4.4.1",
"tailwind-merge": "^2.5.2",
"uuid": "^8.3.2",
"web-vitals": "^2.1.4"
},
"scripts": {
"start:front": "react-scripts start",
"start": "react-scripts start",
"build": "react-scripts build",
"server:dev": "node 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": {
"@playwright/test": "^1.49.1",
"@types/node": "^22.10.7",
"nodemon": "^2.0.15"
}
}