-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.12 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.12 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
46
47
48
49
50
51
52
{
"name": "gen-express-cli",
"version": "5.0.0",
"description": "A simple express cli to generate express app simply by running a command, similar to express-generator",
"main": "index.js",
"author": "RulerChen",
"license": "MIT",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/RulerChen/gen-express-cli.git"
},
"homepage": "https://github.com/RulerChen/gen-express-cli#readme",
"bugs": {
"url": "https://github.com/RulerChen/gen-express-cli/issues"
},
"engines": {
"node": ">=22.0.0"
},
"scripts": {
"start": "node ./src/index.js"
},
"bin": {
"gen-express-cli": "src/index.js"
},
"dependencies": {
"chalk": "^5.6.2",
"commander": "^14.0.1",
"figlet": "^1.9.3",
"gradient-string": "^3.0.0",
"inquirer": "^12.10.0",
"nanospinner": "^1.2.2"
},
"files": [
"src/",
"package.json",
"LICENSE",
"README.md"
],
"keywords": [
"node",
"node.js",
"express",
"express.js",
"express.js cli",
"express-generator",
"gen-express-cli",
"create-express-app",
"cli",
"backend"
]
}