-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.26 KB
/
Copy pathpackage.json
File metadata and controls
50 lines (50 loc) · 1.26 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
{
"name": "ekam_backend",
"version": "1.0.0",
"description": "Api for the Ekam Project",
"homepage": "https://github.com/OmPandey01/ekam-api#readme",
"bugs": {
"url": "https://github.com/OmPandey01/ekam-api/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/OmPandey01/ekam-api.git"
},
"license": "ISC",
"author": "Om Pandey",
"type": "module",
"main": "index.js",
"scripts": {
"test": "node index.js",
"dev": "nodemon --watch src --ext ts --exec tsx index.ts"
},
"dependencies": {
"@prisma/adapter-pg": "^7.8.0",
"@prisma/client": "^7.8.0",
"bcryptjs": "^3.0.3",
"body-parser": "^2.2.2",
"cloudinary": "^2.10.0",
"cookie-parser": "^1.4.7",
"cors": "^2.8.6",
"dotenv": "^17.4.2",
"express": "^5.2.1",
"ioredis": "^5.11.1",
"jsonwebtoken": "^9.0.3",
"multer": "^2.2.0",
"otp-generator": "^4.0.1",
"pg": "^8.22.0",
"resend": "^6.12.4"
},
"devDependencies": {
"@types/cookie-parser": "^1.4.10",
"@types/cors": "^2.8.19",
"@types/express": "^5.0.6",
"@types/ioredis": "^4.28.10",
"@types/node": "^25.9.3",
"@types/pg": "^8.20.0",
"nodemon": "^3.1.14",
"prisma": "^7.8.0",
"tsx": "^4.22.4",
"typescript": "^6.0.3"
}
}