forked from TwilioDevEd/voice-javascript-sdk-quickstart-node
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 969 Bytes
/
package.json
File metadata and controls
43 lines (43 loc) · 969 Bytes
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-voice-javascript-sdk-quickstart-node",
"private": true,
"version": "1.0.0",
"description": "Quick Start application template for Twilio Voice JavaScript SDK on Node.js",
"main": "index.js",
"scripts": {
"start": "node index.js",
"eslint": "./node_modules/.bin/eslint .",
"test": "./node_modules/.bin/jest"
},
"repository": {
"type": "git",
"url": "github.com/TwilioDevEd/client-quickstart-node"
},
"keywords": [
"twilio",
"voip",
"ip",
"chat",
"real",
"time",
"diggity"
],
"author": "Twilio Developer Education",
"license": "MIT",
"engines": {
"node": ">=10.x"
},
"dependencies": {
"@twilio/voice-sdk": "^2.0.1",
"body-parser": "^1.19.0",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"twilio": "~3.64.0"
},
"devDependencies": {
"eslint": "^7.29.0",
"eslint-config-google": "^0.14.0",
"jest": "^27.0.5",
"prettier": "2.3.1"
}
}