-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
29 lines (29 loc) · 1 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
{
"name": "speakeasy-bar-tsoa",
"version": "1.0.0",
"main": "build/src/server.js",
"scripts": {
"dev": "concurrently \"nodemon\" \"nodemon -x tsoa spec-and-routes\" \"nodemon -x tsoa spec --yaml\"",
"build": "tsoa spec-and-routes && tsoa spec --yaml && tsc",
"start": "node build/src/server.js",
"spec": "tsoa spec && tsoa spec --yaml",
"spec-and-sdk": "tsoa spec-and-routes tsoa spec --yaml && && tsc && speakeasy generate sdk --schema build/swagger.json --lang typescript --out ./sdk"
},
"description": "Speakeasy Bar API",
"author": "Speakeasy Support <support@speakeasy.bar> (https://support.speakeasy.bar)",
"license": "Apache-2.0",
"dependencies": {
"express": "^4.18.2",
"swagger-ui-express": "^5.0.0",
"tsoa": "^5.1.1"
},
"devDependencies": {
"@types/express": "^4.17.17",
"@types/node": "^20.5.0",
"@types/swagger-ui-express": "^4.1.3",
"concurrently": "^8.2.0",
"nodemon": "^3.0.1",
"ts-node": "^10.9.1",
"typescript": "^5.1.6"
}
}