-
Notifications
You must be signed in to change notification settings - Fork 41
/
package.json
42 lines (42 loc) · 1.1 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
36
37
38
39
40
41
42
{
"name": "dynamic-video-layouts",
"version": "1.0.0",
"description": "Vonage Video API Broadcast Sample Application",
"engines": {
"node": "16.17.0"
},
"main": "index.js",
"scripts": {
"start": "node index.js",
"dev": "nodemon index.js",
"lint": "eslint",
"heroku-postbuild": "node .heroku/post-deploy.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/opentok/broadcast-sample-app.git"
},
"keywords": [
"opentok",
"broadcast",
"webrtc"
],
"author": "Michael Jolley <michael.jolley@vonage.com>, Javier Molina sanz <javier.molinasanz@vonage.com> Enrico Portolan <enrico.portolan@vonage.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/opentok/broadcast-sample-app/issues"
},
"homepage": "https://github.com/opentok/broadcast-sample-app#readme",
"dependencies": {
"axios": "^1.2.2",
"ejs": "^3.1.8",
"express": "^4.18.2",
"jsonwebtoken": "^9.0.0",
"opentok": "^2.15.2"
},
"devDependencies": {
"eslint": "^8.31.0",
"eslint-config-airbnb": "^19.0.4",
"nodemon": "^2.0.20"
}
}