forked from TwilioDevEd/browser-calls-node
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.19 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
44
45
46
47
48
49
50
51
52
{
"name": "browser-calls-node",
"version": "1.0.0",
"private": true,
"scripts": {
"start": "DEBUG=test-app* node ./bin/www",
"test": "./node_modules/.bin/mocha test --exit"
},
"description": "A sample application which shows you how to make and receive phone calls with a browser and Twilio Client",
"author": {
"name": "Omar Ahmed",
"email": "[email protected]"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/TwilioDevEd/browser-calls-node"
},
"keywords": [
"node",
"browser call",
"twilio",
"express",
"twiml",
"webhooks"
],
"engines": {
"node": "^12"
},
"dependencies": {
"body-parser": "^1.19.0",
"connect-flash": "^0.1.1",
"cookie-parser": "~1.4.5",
"debug": "~4.3.1",
"dotenv": "^8.2.0",
"express": "~4.17.1",
"express-session": "^1.17.1",
"pug": "^3.0.2",
"mongoose": "^5.12.6",
"morgan": "~1.10.0",
"serve-favicon": "~2.5.0",
"twilio": "~3.61.0"
},
"devDependencies": {
"chai": "^4.3.4",
"cheerio": "^1.0.0-rc.6",
"connect-flash": "^0.1.1",
"mocha": "^8.3.2",
"mongodb-memory-server": "^6.9.6",
"supertest": "^6.1.3"
}
}