forked from TwilioDevEd/client-quickstart-node
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 873 Bytes
/
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
{
"name": "client-quickstart-node",
"private": true,
"version": "1.0.0",
"description": "Quick Start application template for Twilio Client 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": {
"body-parser": "^1.19.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"twilio": "~3.51.0"
},
"devDependencies": {
"eslint": "^7.24.0",
"eslint-config-google": "^0.14.0",
"jest": "^26.6.3"
}
}