-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 749 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 749 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
{
"name": "express-api-with-openapi-docs",
"version": "1.0.0",
"description": "A simple express REST API with OpenAPI docs generated by Swagger UI.",
"main": "server.js",
"scripts": {
"dev:build": "tsc -w",
"dev:run": "nodemon dist/server.js",
"dev": "concurrently npm:dev:*",
"build": "tsc",
"start": "node dist/server.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"express": "^4.18.2",
"swagger-ui-express": "^4.6.3",
"yamljs": "^0.3.0"
},
"devDependencies": {
"@types/express": "^4.17.17",
"@types/swagger-ui-express": "^4.1.3",
"@types/yamljs": "^0.2.31",
"concurrently": "^8.0.1"
}
}