-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 795 Bytes
/
Copy pathpackage.json
File metadata and controls
37 lines (37 loc) · 795 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
37
{
"name": "create-xpress-app",
"version": "1.0.4",
"description": "CLI tool for creating Express.js applications with TypeScript",
"bin": {
"create-xpress-app": "./dist/main.js"
},
"scripts": {
"build": "tsc",
"start": "node dist/main.js"
},
"dependencies": {
"chalk": "^4.1.2",
"commander": "^9.4.1",
"create-xpress-app": "^1.0.0",
"execa": "^6.1.0",
"figlet": "^1.7.0",
"fs-extra": "^10.0.0",
"inquirer": "^8.2.6",
"ora": "^5.4.1"
},
"devDependencies": {
"@types/figlet": "^1.5.8",
"@types/fs-extra": "^11.0.4",
"@types/inquirer": "^9.0.7",
"@types/node": "^22.7.4",
"typescript": "^4.0.0"
},
"keywords": [
"cli",
"express",
"typescript",
"node",
"generator"
],
"license": "MIT"
}