forked from Bipin7giri/NodeJS_cli
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
23 lines (23 loc) · 685 Bytes
/
Copy pathpackage.json
File metadata and controls
23 lines (23 loc) · 685 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"name": "express_boilerplate_cli",
"version": "1.0.5",
"description": "A powerful tool designed to simplify the process of creating API endpoints in Node.js applications.",
"main": "script.js",
"type": "module",
"scripts": {
"start:orm": "node script.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": ["Node.js", "API endpoints", "CLI", "controllers", "routers", "services"],
"author": "",
"license": "ISC",
"dependencies": {
"express": "^4.18.2",
"express-router": "^0.0.1",
"inquirer": "^9.2.10",
"knex": "^2.5.1",
"mysql2": "^3.6.0",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.0"
}
}