-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 930 Bytes
/
Copy pathpackage.json
File metadata and controls
41 lines (41 loc) · 930 Bytes
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": "raqeeb-backend-service",
"version": "2.0.0",
"description": "API for raqeeb ERP system",
"exports": "./index.js",
"type": "module",
"aliases": {
"@": "./",
"@lib": "./lib",
"@routes": "./routes",
"@schemas": "./schemas",
"@services": "./services",
"@middlewares": "./middlewares"
},
"scripts": {
"start": "node .",
"dev": "nodemon ."
},
"keywords": [],
"author": "Raqeeb Inc.",
"license": "MIT",
"dependencies": {
"@prisma/client": "^5.17.0",
"bcrypt": "^5.1.1",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"esm-module-alias": "^2.2.1",
"express": "^4.19.2",
"express-validator": "^7.2.0",
"ioredis": "^5.4.1",
"jsonwebtoken": "^9.0.2",
"morgan": "^1.10.0",
"nodemailer": "^6.9.14",
"winston": "^3.13.0"
},
"devDependencies": {
"nodemon": "^3.1.4",
"prisma": "^5.17.0"
}
}