-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1 KB
/
package.json
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
{
"name": "backendly-ecommerce-authentication",
"version": "1.0.0",
"main": "app.js",
"scripts": {
"start": "npx prisma migrate deploy && node app.js",
"build": "npx prisma generate",
"queue": "node queueProcessor.js",
"subscriber": "node subscriberProcessor.js",
"test": "jest"
},
"keywords": [
"ecommerce",
"authentication",
"backend"
],
"author": "Your Name",
"license": "ISC",
"description": "Backend authentication service for an e-commerce platform",
"dependencies": {
"@prisma/client": "^5.20.0",
"bcrypt": "^5.1.1",
"bull": "^4.16.3",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.21.2",
"ioredis": "^5.4.1",
"jsonwebtoken": "^9.0.2",
"node-cron": "^3.0.3",
"nodemailer": "^6.9.15",
"otp-generator": "^4.0.1",
"pg": "^8.13.0",
"redis": "^4.7.0",
"speakeasy": "^2.0.0",
"uuid": "^10.0.0"
},
"devDependencies": {
"jest": "^29.7.0",
"prisma": "^5.22.0",
"supertest": "^7.0.0"
}
}