-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1010 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 1010 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
30
31
32
33
34
35
36
{
"name": "nodejs-api-init",
"version": "1.2.0",
"description": "CLI tool to scaffold Node.js backend projects with Express, Fastify, or Hono + DB setup (MongoDB, PostgreSQL, MySQL)",
"bin": {
"nodejs-api-init": "./bin/index.js"
},
"type": "module",
"scripts": {
"dev": "nodemon --watch ./bin --exec node ./bin/index.js",
"build": "echo 'No build step needed for CLI (JS only)'",
"test": "echo \"No tests yet\" && exit 0",
"release:patch": "npm version patch && git push origin main --tags",
"release:minor": "npm version minor && git push origin main --tags",
"release:major": "npm version major && git push origin main --tags"
},
"keywords": [
"cli",
"node",
"backend",
"express",
"fastify",
"hono",
"mongodb",
"postgres",
"mysql"
],
"author": "David Mwas dmwas704@gmail.com",
"license": "MIT",
"dependencies": {
"chalk": "^5.4.1",
"execa": "^9.6.0",
"fs-extra": "^11.3.0",
"inquirer": "^12.7.0"
}
}