-
Notifications
You must be signed in to change notification settings - Fork 152
/
package.json
executable file
·55 lines (55 loc) · 1.25 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
53
54
55
{
"name": "twilio-contact-center",
"description": "A simple omni channel contact center using Twilio WebRTC Client, Video, SMS, Chat and Taskrouter",
"version": "1.13.0",
"author": "Matthias Damm",
"contributors": [
{
"name": "Hunter Rancourt",
"url": "https://github.com/skwid138"
}
],
"license": "MIT",
"repository": "nash-md/twilio-contact-center",
"main": "app.js",
"bugs": "https://github.com/nash-md/twilio-contact-center/issues",
"private": false,
"keywords": [
"Twilio",
"Twilio TaskRouter",
"Twilio Client",
"Twilio Programmable Chat",
"Twilio Programmable SMS",
"Twilio Programmable Video",
"WebRTC",
"NodeJS",
"node",
"contact center",
"contact centre"
],
"dependencies": {
"@google-cloud/datastore": "^5.0.6",
"body-parser": "^1.19.0",
"compression": "^1.7.3",
"express": "^4.17.1",
"express-session": "^1.17.1",
"pg": "^7.18.2",
"twilio": "^3.43.1"
},
"devDependencies": {
"babel-eslint": "^10.1.0",
"dotenv": "^8.2.0",
"eslint": "^6.8.0"
},
"engines": {
"node": "10.x"
},
"files": [
"README.md",
"LICENSE"
],
"scripts": {
"start": "node app.js",
"lint": "./node_modules/.bin/eslint . || exit 0"
}
}