-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 952 Bytes
/
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
{
"name": "openapi",
"version": "1.0.0",
"author": "edwin.corrigan@siren.io <edwin.corrigan@siren.io>",
"main": "build/src/server.js",
"license": "MIT",
"dependencies": {
"@hapi/hapi": "20.x.x",
"@openapitools/openapi-generator-cli": "^2.5.2",
"@redocly/cli": "^1.0.0-beta.122",
"redoc-cli": "^0.13.20",
"tsoa": "^5.0.0",
"widdershins": "^4.0.1"
},
"scripts": {
"build": "tsoa spec-and-routes && tsc",
"start": "node --inspect build/src/server.js",
"dev": "concurrently \"nodemon\" \"nodemon -x tsoa spec-and-routes\"",
"showdocs": "@redocly/cli preview-docs build/swagger.json",
"sdk": "npx openapi-generator-cli generate",
"all": "yarn build && yarn sdk && yarn start"
},
"devDependencies": {
"@types/hapi__hapi": "20.x.x",
"@types/node": "^18.11.18",
"concurrently": "^7.6.0",
"joi": "^17.7.0",
"nodemon": "^2.0.20",
"ts-node": "^10.9.1",
"typescript": "4.5.5"
},
"packageManager": "yarn@3.2.1"
}