-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 1.03 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
{
"name": "PDM-University-livestream-server",
"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",
"gh-pages": "^3.2.3",
"serve-favicon": "^2.5.0",
"socket.io": "^4.4.1"
},
"devDependencies": {
"nodemon": "^2.0.15"
},
"scripts": {
"watch": "nodemon --watch \"src/\" --exec \"node src/app.js\"",
"deploy": "gh-pages -d src",
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node src/app.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/deepansharya1111/virtual-conferencing-app-for-college.git"
},
"keywords": [
"LiveStream",
"Server"
],
"author": "Deepansh Singh Arya <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/deepansharya1111/virtual-conferencing-app-for-college/issues"
},
"homepage": "https://deepansharya1111.github.io/virtual-conferencing-app-for-college/"
}