-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 823 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 823 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
{
"name": "node-express-api-swagger-boilerplate",
"version": "1.0.0",
"description": "Simple Nodejs Express REST API with Swagger UI and swagger-autogen boilerplate",
"main": "server.js",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/ypdev19/node-express-basic-api-json-swagger-boilerplate.git"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"swagger-autogen": "node swagger.js",
"clean": "rm -rf node_modules package-lock.json"
},
"keywords": ["nodejs, swagger, expressjs, apidocumentation, openapi", "restapi"],
"author": "ypdev19",
"license": "MIT",
"dependencies": {
"express": "^5.1.0",
"cors": "^2.8.5",
"swagger-ui-express": "^5.0.1"
},
"devDependencies": {
"swagger-autogen": "^2.23.7"
}
}