-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 960 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 960 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
{
"name": "avr-webhook",
"version": "1.1.0",
"author": "Agent Voice Response <info@agentvoiceresponse.com>",
"description": "Webhook service for Agent Voice Response",
"main": "index.js",
"scripts": {
"start": "node .",
"start:dev": "nodemon --inspect ./index.js",
"dc:build": "docker build --platform=linux/amd64 -t agentvoiceresponse/avr-webhook:latest -t agentvoiceresponse/avr-webhook:${npm_package_version} .",
"dc:push": "docker push agentvoiceresponse/avr-webhook:latest && docker push agentvoiceresponse/avr-webhook:${npm_package_version}"
},
"dependencies": {
"dotenv": "^17.2.1",
"express": "^4.18.2",
"cors": "^2.8.5",
"helmet": "^7.1.0",
"express-rate-limit": "^7.1.5",
"ws": "^8.18.3"
},
"devDependencies": {
"nodemon": "^3.1.10"
},
"contributors": [
{
"name": "Giuseppe Careri",
"email": "info@gcareri.com",
"url": "https://github.com/gcareri"
}
]
}