-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
39 lines (39 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
36
37
38
39
{
"name": "twilio-video-electron",
"version": "1.0.0",
"description": "Twilio Video, Electron, and Screen sharing Demo",
"main": "main.js",
"scripts": {
"run-electron": "electron .",
"run-node-server": "node server",
"build-web": "cd web && browserify src/video-demo.js > public/video-demo.js",
"clean-web": "cd web && rimraf public/video-demo.js",
"start": "npm run clean-web && npm run build-web && run-p run-electron run-node-server"
},
"repository": "https://github.com/electron/electron-quick-start",
"keywords": [
"Electron",
"quick",
"start",
"tutorial",
"demo"
],
"author": "Twilio",
"license": "MIT",
"dependencies": {
"dotenv": "^4.0.0",
"express": "^4.15.2",
"twilio": "^3.19.1",
"twilio-video": "2.0.0-beta14"
},
"devDependencies": {
"electron": "^6.0.7",
"prismjs": "^1.6.0",
"stackblur-canvas": "^1.4.0",
"jquery": "^3.4.1",
"npm-run-all": "^4.1.5",
"browserify": "^14.3.0",
"copyfiles": "^1.2.0",
"rimraf": "^2.6.1"
}
}