-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.3 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "easy-express-cwa-v2",
"version": "2.0.0",
"description": "CLI tool to setup a common Express.js backend developed by codewithashim",
"main": "bin/cli.js",
"license": "MIT",
"type": "module",
"bin": {
"easy-express-cwa-v2": "bin/cli.js"
},
"author": "Ashim Rudra Paul",
"dependencies": {
"boxen": "^8.0.1",
"chalk": "^4.1.2",
"cli-cursor": "^5.0.0",
"cli-spinners": "^3.2.0",
"figlet": "^1.7.0",
"fs-extra": "^11.2.0",
"gradient-string": "^2.0.2",
"inquirer": "^10.2.1",
"ora": "^8.1.0"
},
"scripts": {
"start": "NODE_NO_WARNINGS=1 node bin/cli.js",
"build": "tsc",
"install": "echo 'easy-express-cwa-v2 has been installed. Use `npx easy-express-cwa-v2` command to get started.'"
},
"keywords": [
"express",
"backend",
"cli",
"tool",
"automation",
"typescript",
"docker",
"jwt",
"authentication",
"authorization",
"logger",
"redis",
"file-upload",
"cloudinary",
"aws-s3",
"swagger",
"cookies",
"security",
"easy-express",
"server-setup",
"Nodejs",
"TypeScript",
"JavaScript",
"Codewithashim"
],
"devDependencies": {
"@types/fs-extra": "^11.0.4",
"@types/inquirer": "^9.0.7",
"@types/node": "^22.5.4",
"typescript": "^5.5.4"
}
}