-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
32 lines (32 loc) · 990 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
{
"name": "nodejs-server-swagger-express-mvc-custom",
"version": "1.0.1",
"description": "A project that provides scaffolding to make it easy to create/maintain a functioning dynamic API from a Swagger 2 specification, with support for parsing & validating parameters, route management and route controller mapping by convention.",
"main": "app.js",
"scripts": {
"start": "NODE_ENV=dev nodemon app.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"swagger",
"express"
],
"author": "E.A.Soto",
"license": "MIT",
"dependencies": {
"@apidevtools/swagger-express-middleware": "^4.0.2",
"convict": "^6.0.1",
"express": "^4.17.1",
"js-yaml": "^4.1.0",
"json5": "^2.2.0",
"pug": "^3.0.2",
"serve-favicon": "^2.5.0",
"swagger-express-router": "^1.0.0",
"swagger-ui-express": "^4.1.6",
"http-errors": "^1.8.0"
},
"devDependencies": {
"prettier": "^2.2.1",
"nodemon": "^2.0.7"
}
}