-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.03 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.03 KB
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
37
38
39
40
41
42
43
44
45
{
"name": "create-node-app-cli",
"description": "CLI to scaffold a Node.js project with optional frameworks, databases, ORMs, TypeScript, and Swagger docs configuration",
"version": "1.0.2",
"main": "./dist/index.mjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"repository": {
"url": "https://github.com/munaray/create-node-app-cli"
},
"bin": {
"create-node-app-cli": "./dist/index.mjs"
},
"scripts": {
"build": "tsup"
},
"keywords": [
"cli",
"node.js",
"scaffold",
"project",
"orm",
"database",
"swagger"
],
"author": "Abdulsalam Sa'ad (munaray)",
"license": "MIT",
"dependencies": {
"chalk": "^5.3.0",
"commander": "^12.1.0",
"execa": "^9.4.0",
"inquirer": "^11.0.2",
"ora": "^8.1.0",
"tsup": "^8.3.0"
},
"devDependencies": {
"@eslint/js": "^9.11.1",
"@types/node": "^22.7.4",
"eslint": "^9.11.1",
"globals": "^15.9.0",
"prettier": "3.3.3",
"typescript": "^5.6.2",
"typescript-eslint": "^8.7.0"
}
}