-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.22 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.22 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
{
"name": "express-api",
"version": "1.0.0",
"description": "A modular Express.js backend framework with plugin-based router handler for scalable and maintainable applications.",
"main": "server.js",
"scripts": {
"start": "node server.js",
"dev": "nodemon server.js",
"production": "pm2 start server.js --name \"Express API\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/vryptt/express-api.git"
},
"keywords": [
"express",
"api",
"backend",
"openapi",
"express-api"
],
"author": "vryptt",
"license": "ISC",
"type": "module",
"bugs": {
"url": "https://github.com/vryptt/express-api/issues"
},
"homepage": "https://github.com/vryptt/express-api#readme",
"dependencies": {
"chalk": "^5.6.2",
"compression": "^1.8.1",
"cookie-parser": "^1.4.7",
"dotenv": "^17.2.2",
"ejs": "^3.1.10",
"express": "^5.1.0",
"express-rate-limit": "^8.1.0",
"express-slow-down": "^3.0.0",
"joi": "^18.0.1",
"morgan": "^1.10.1",
"swagger-ui-express": "^5.0.1",
"uuid": "^13.0.0",
"winston": "^3.17.0",
"winston-daily-rotate-file": "^5.0.0"
},
"devDependencies": {
"nodemon": "^3.1.10",
"pm2": "^6.0.11"
}
}