-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
44 lines (44 loc) · 1.12 KB
/
package.json
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
{
"name": "node-express-cli",
"version": "2.9.2",
"description": "Simple express cli generator",
"main": "dist/index.js",
"bin": "dist/index.js",
"scripts": {
"build": "tsc",
"start": "node dist/index",
"dev": "tsc-watch",
"prepare": "npm run build",
"prettier:fix": "prettier --config .prettierrc.json --write source/**/**/*.ts && prettier --config .prettierrc.json --write code/**//**/*.ts"
},
"keywords": [
"express",
"cli",
"generator"
],
"author": "Fernando Acosta",
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/FernandoAcTr/node-express-cli"
},
"dependencies": {
"@inquirer/prompts": "^5.3.6",
"colors": "^1.4.0",
"figlet": "^1.7.0",
"fs-extra": "^11.2.0",
"gradient-string": "^2.0.2",
"shelljs": "^0.8.5",
"yargs": "^17.7.2"
},
"devDependencies": {
"@types/figlet": "^1.5.8",
"@types/fs-extra": "^11.0.4",
"@types/gradient-string": "^1.1.2",
"@types/shelljs": "^0.8.15",
"@types/yargs": "^17.0.32",
"prettier": "^3.1.0",
"tsc-watch": "^4.4.0",
"typescript": "^4.7.3"
}
}