-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.59 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 1.59 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "awesome-express",
"version": "0.1.4",
"description": "Enhanced Express framework with HTTP/2 support and CLI tools",
"main": "lib/index.js",
"author": "Abdullah Farag <abdallah.farag@lavaloon.com>",
"repository": {
"type": "git",
"url": "https://github.com/al0olo/awesome-express"
},
"bugs": {
"url": "https://github.com/al0olo/awesome-express/issues"
},
"bin": {
"awesome-express": "./bin/cli.js"
},
"scripts": {
"build": "tsc",
"test": "jest",
"dev": "tsc -w"
},
"keywords": [
"express",
"http2",
"cli",
"framework",
"mvc",
"ssl",
"certbot"
],
"license": "MIT",
"dependencies": {
"chalk": "^4.1.2",
"change-case": "^4.1.2",
"commander": "^10.0.1",
"dotenv": "^16.5.0",
"ejs": "^3.1.9",
"execa": "^5.1.1",
"express": "^4.18.2",
"fs-extra": "^11.1.1",
"inquirer": "^8.2.6",
"jsonwebtoken": "^9.0.2",
"ora": "^5.4.1",
"spdy": "^4.0.2",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.0"
},
"devDependencies": {
"@types/ejs": "^3.1.5",
"@types/express": "^4.17.21",
"@types/fs-extra": "^11.0.4",
"@types/inquirer": "^8.2.6",
"@types/jest": "^29.5.12",
"@types/jsonwebtoken": "^9.0.9",
"@types/node": "^18.16.0",
"@types/spdy": "^3.4.9",
"@types/swagger-jsdoc": "^6.0.4",
"@types/swagger-ui-express": "^4.1.6",
"jest": "^29.7.0",
"ts-jest": "^29.1.2",
"typescript": "^5.3.3"
},
"engines": {
"node": ">=14.0.0"
},
"overrides": {
"glob": "^10.3.15"
},
"resolutions": {
"glob": "^10.3.15"
}
}