-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 717 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 717 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
{
"name": "express-open-api-skeleton",
"version": "1.0.0",
"description": "A Node Express skeleton that comes with openapi/swagger already configured including routing.",
"main": "server.js",
"scripts": {
"start": "nodemon server.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"openapi",
"swagger",
"api",
"documentation",
"skeleton",
"node-skeleton",
"openapi-skeleton"
],
"author": "Reuben Frimpong",
"license": "MIT",
"dependencies": {
"dotenv": "^10.0.0",
"express": "^4.17.1",
"nodemon": "^2.0.13",
"swagger-parser": "^10.0.3",
"swagger-routes-express": "^3.3.1",
"swagger-ui-express": "^4.1.6"
}
}