-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (32 loc) · 926 Bytes
/
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
{
"name": "ms-teams-clone",
"version": "0.0.1",
"description": "A conference call implementation using WebRTC, Socket.io and Node.js.",
"main": "src/app.js",
"dependencies": {
"express": "^4.17.1",
"socket.io": "^2.3.0"
},
"devDependencies": {
"nodemon": "^2.0.2"
},
"scripts": {
"start":"node ./src/app.js",
"watch": "nodemon --watch \"src/\" --exec \"node src/app.js\"",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ayushman17/ms-teams-clone.git"
},
"keywords": [
"Microsoft",
"Teams"
],
"author": "Ayushman Singh Chauhan <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/ayushman17/ms-teams-clone/issues"
},
"homepage": "https://github.com/ayushman17/ms-teams-clone#readme"
}