-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.05 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
{
"name": "swagger-ivr",
"version": "0.1.0",
"description": "Consume your API documentation via an IVR menu",
"main": "app.js",
"scripts": {
"build": "npx tsc",
"start": "node dist/index.js",
"dev": "concurrently \"npx tsc --watch\" \"nodemon -q dist/index.js\"",
"test": "echo \"Error: no test specified\" && exit 1",
"docker": "docker build -t swagger-ivr . && docker run -p 8080:8080 swagger-ivr"
},
"keywords": [
"ivr",
"twilio",
"node",
"swagger",
"openapi"
],
"author": "CalemRoelofs",
"license": "MIT",
"dependencies": {
"@apidevtools/swagger-parser": "^10.1.0",
"body-parser": "^1.20.0",
"express": "^4.18.1",
"js-yaml": "^4.1.0",
"morgan": "^1.10.0",
"twilio": "^3.81.0"
},
"devDependencies": {
"@types/body-parser": "^1.19.2",
"@types/express": "^4.17.13",
"@types/js-yaml": "^4.0.5",
"@types/morgan": "^1.9.3",
"@types/node": "^18.7.14",
"concurrently": "^7.3.0",
"nodemon": "^2.0.19",
"openapi-types": "^12.0.2",
"typescript": "^4.8.2"
}
}