forked from philnash/twilio-video-screen-sharing
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.23 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
{
"name": "twilio-video-screen-sharing",
"version": "1.0.0-dev",
"description": "Twilio Video Quickstart with Screen Sharing for JavaScript",
"main": "server/index.js",
"scripts": {
"clean": "rimraf quickstart/public/index.js",
"build":
"watchify quickstart/src/index.js -t [ babelify --presets env ] -o quickstart/public/index.js -v ",
"serve": "nodemon server --ignore quickstart",
"start": "npm run clean && concurrently \"npm run build\" \"npm run serve\""
},
"repository": {
"type": "git",
"url": "https://github.com/philnash/twilio-video-screen-sharing.git"
},
"keywords": ["twilio", "video", "screen sharing"],
"author": "Twilio",
"license": "MIT",
"bugs": {
"url": "https://github.com/philnash/twilio-video-screen-sharing/issues"
},
"homepage": "https://github.com/philnash/twilio-video-screen-sharing/",
"dependencies": {
"dotenv": "^4.0.0",
"express": "^4.15.2",
"twilio": "^3.0.0",
"twilio-video": "^1.0.0",
"whatwg-fetch": "^2.0.3"
},
"devDependencies": {
"babel-preset-env": "^1.6.0",
"babelify": "^7.3.0",
"browserify": "^14.3.0",
"concurrently": "^3.5.0",
"nodemon": "^1.12.0",
"rimraf": "^2.6.1",
"watchify": "^3.9.0"
}
}