-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (33 loc) · 763 Bytes
/
package.json
File metadata and controls
34 lines (33 loc) · 763 Bytes
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
{
"name": "code-collab-2.0",
"version": "1.0.0",
"description": "",
"main": "server/dist/server.js",
"scripts": {
"dev": "nodemon --exec ts-node server/src/server.ts",
"start": "node server/dist/server.js",
"build-client": "cd client && npm run build",
"start-client": "cd client && npm run start",
"build": "tsc"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.21.0",
"peer": "^1.0.2",
"peerjs": "^1.5.4",
"socket.io": "^4.7.3"
},
"devDependencies": {
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.21",
"@types/node": "^18.15.11",
"@types/socket.io": "^3.0.2",
"nodemon": "^3.0.2",
"ts-node": "^10.9.1",
"typescript": "^4.9.5"
}
}