-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 931 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 931 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
{
"name": "collaborative-code-editor",
"version": "1.0.0",
"description": "An online code compiler which helps the users to do pair programming.",
"main": "index.js",
"scripts": {
"server": "nodemon server.js",
"client": "npm start --prefix client",
"dev": "concurrently \"npm run server\" \"npm run client\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/md-amir-gauhar/collaborative-code-editor.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/md-amir-gauhar/collaborative-code-editor/issues"
},
"homepage": "https://github.com/md-amir-gauhar/collaborative-code-editor#readme",
"dependencies": {
"colors": "^1.4.0",
"concurrently": "^7.0.0",
"cors": "^2.8.5",
"express": "^4.17.2",
"moment": "^2.29.1",
"socket.io": "^4.4.1",
"uuid": "^8.3.2"
},
"devDependencies": {
"nodemon": "^2.0.15"
}
}