-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 1.77 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "twilio-pbx",
"description": "A Virtual PBX Server for Twilio (Supports standalone Node.js server and Firebase Cloud Functions)",
"homepage": "https://github.com/jmkim/twilio-pbx.git",
"author": "Jongmin Kim <jmkim@jongmin.dev>",
"license": "MIT",
"version": "1.2.4",
"main": "app-firebase.js",
"engines": {
"node": "16"
},
"scripts": {
"deploy": "firebase deploy --only functions",
"lint": "eslint .",
"logs": "firebase functions:log",
"serve": "firebase emulators:start --only functions",
"shell": "firebase functions:shell",
"start": "node bin/twilio-pbx"
},
"files": [
".env.template",
".firebaserc.template",
".eslintrc.json",
"app.js",
"app-firebase.js",
"README.md",
"firebase.json",
"package.json",
"bin",
"public",
"routes",
"utils",
"views"
],
"dependencies": {
"cookie-parser": "~1.4.4",
"debug": "~2.6.9",
"dotenv": "^16.0.3",
"express": "~4.18.2",
"firebase-admin": "^10.0.2",
"firebase-functions": "^4.1.1",
"got": "^11.8.5",
"hbs": "^4.2.0",
"http-errors": "~1.6.3",
"morgan": "~1.9.1",
"twilio": "^3.83.4"
},
"keywords": [
"twilio",
"pbx",
"sms",
"call",
"email",
"call forwarding",
"phone",
"server",
"firebase",
"firebase functions"
],
"repository": {
"type": "git",
"url": "https://github.com/jmkim/twilio-pbx.git"
},
"bugs": {
"url": "https://github.com/jmkim/twilio-pbx/issues"
},
"devDependencies": {
"eslint": "^8.29.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.6.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-vue": "^9.8.0",
"firebase-functions-test": "^0.2.0"
}
}