-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.16 KB
/
Copy pathpackage.json
File metadata and controls
45 lines (45 loc) · 1.16 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
{
"name": "codecollab",
"version": "1.0.0",
"private": true,
"type": "module",
"scripts": {
"dev": "vite",
"dev:api": "node scripts/dev-api.mjs",
"build": "tsc --noEmit && vite build",
"preview": "vite preview",
"collab": "node collab-server/index.js",
"collab:dev": "node --watch collab-server/index.js"
},
"dependencies": {
"@babel/runtime": "^8.0.0",
"@monaco-editor/react": "^4.6.0",
"axios": "^1.7.9",
"core-js-pure": "^3.49.0",
"cors": "^2.8.5",
"dotenv": "^16.4.7",
"express": "^4.21.2",
"groq-sdk": "^0.9.1",
"monaco-editor": "^0.55.1",
"prop-types": "^15.8.1",
"react": "^18.3.1",
"react-avatar": "^5.0.3",
"react-dom": "^18.3.1",
"react-hot-toast": "^2.4.1",
"react-router-dom": "^6.28.0",
"socket.io": "^4.8.3",
"socket.io-client": "^4.8.1",
"uuid": "^11.0.3"
},
"devDependencies": {
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@types/uuid": "^10.0.0",
"@vitejs/plugin-react": "^4.3.4",
"autoprefixer": "^10.4.20",
"postcss": "^8.4.49",
"tailwindcss": "^3.4.16",
"typescript": "^5.7.2",
"vite": "^6.0.3"
}
}