-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.22 KB
/
package.json
File metadata and controls
41 lines (41 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
{
"name": "custom_admin_panel_service",
"version": "1.0.0",
"description": "This is the Custom Admin Panel Service which is a Microservice highly compatible with Other Microservices like Custom Auth Service and Software Management Service\"",
"main": "server.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node server.js"
},
"author": "Yatharth Kumar Saxena",
"license": "ISC",
"dependencies": {
"axios": "^1.13.6",
"cookie-parser": "^1.4.7",
"dotenv": "^17.3.1",
"dotenv-expand": "^12.0.3",
"express": "^5.2.1",
"express-rate-limit": "^8.2.1",
"ioredis": "^5.10.0",
"jsonwebtoken": "^9.0.3",
"module-alias": "^2.3.4",
"mongoose": "^9.2.3",
"rate-limit-redis": "^4.3.1",
"uuid": "^9.0.1"
},
"_moduleAliases": {
"@": "src",
"@routes": "src/routes",
"@controllers": "src/controllers",
"@middlewares": "src/middlewares",
"@app": "src/app.js",
"@configs": "src/configs",
"@utils": "src/utils",
"@responses": "src/responses",
"@rate-limiters": "src/rate-limiters",
"@models": "src/models",
"@services": "src/services",
"@cron-jobs": "src/cron-jobs",
"@internals": "src/internals"
}
}