-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.04 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
{
"name": "voicelink",
"private": true,
"version": "1.0.1",
"type": "module",
"description": "Voicelink - An application for integrating voice communication using Twilio Voice JavaScript SDK and MongoDB.",
"main": "app.cjs",
"scripts": {
"start": "node app.cjs",
"eslint": "./node_modules/.bin/eslint .",
"test": "./node_modules/.bin/jest"
},
"repository": {
"type": "git",
"url": "https://github.com/d10xi24/voicelink"
},
"author": "dio@1evatine",
"license": "MIT",
"engines": {
"node": ">=18.19.0"
},
"dependencies": {
"@twilio/runtime-handler": "^2.0.1",
"@twilio/voice-sdk": "^2.2.0",
"body-parser": "^1.19.0",
"dotenv": "^16.4.5",
"ejs": "^3.1.9",
"electron": "^29.1.6",
"express": "^4.19.1",
"express-ejs-layouts": "^2.5.1",
"intl-tel-input": "^20.0.5",
"twilio": "^5.0.1",
"winston": "^3.13.0"
},
"devDependencies": {
"eslint": "^7.32.0",
"eslint-config-google": "^0.14.0",
"jest": "^27.0.5",
"pkg": "^5.8.1",
"prettier": "2.3.1"
}
}