-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.06 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
43
{
"name": "twilio-playground",
"version": "0.1.0",
"description": "Twilio calls playground",
"main": "server/app.js",
"scripts": {
"start": "node server/app.js",
"start-dev": "node server/app.js",
"lint": "npx eslint server",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TheProfs/twilio-playground.git"
},
"keywords": [
"twilio",
"video",
"calls",
"sdk"
],
"author": "@TheProfs",
"license": "MIT",
"bugs": {
"url": "https://github.com/TheProfs/twilio-playground/issues"
},
"homepage": "https://github.com/TheProfs/twilio-playground#readme",
"dependencies": {
"body-parser": "^1.20.0",
"express": "^4.18.1",
"http-errors": "^2.0.0",
"joi": "^17.6.0",
"twilio": "^3.77.3",
"twilio-video": "^2.21.3"
},
"devDependencies": {
"eslint": "^8.18.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.2.3",
"eslint-plugin-promise": "^6.0.0"
}
}