-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.18 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
43
44
45
46
{
"name": "server",
"version": "1.0.0",
"description": "",
"main": "server.js",
"scripts": {
"start": "ts-node-dev --respawn --transpile-only server.ts",
"build": "tsc",
"dev": "ts-node-dev --respawn --transpile-only server.ts",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Shuvo",
"license": "ISC",
"dependencies": {
"@types/bcrypt": "^5.0.1",
"axios": "^1.6.1",
"bcrypt": "^5.1.1",
"cloudinary": "^1.41.0",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"datauri": "^4.1.0",
"dotenv": "^16.3.1",
"ejs": "^3.1.9",
"express": "^4.18.2",
"http-status": "^1.7.3",
"ioredis": "^5.3.2",
"jsonwebtoken": "^9.0.2",
"mongoose": "^7.6.3",
"multer": "^1.4.5-lts.1",
"node-cron": "^3.0.2",
"nodemailer": "^6.9.7",
"stripe": "^14.4.0",
"ts-node-dev": "^2.0.0",
"typescript": "^5.2.2"
},
"devDependencies": {
"@types/cookie-parser": "^1.4.5",
"@types/cors": "^2.8.15",
"@types/ejs": "^3.1.4",
"@types/express": "^4.17.20",
"@types/jsonwebtoken": "^9.0.4",
"@types/multer": "^1.4.9",
"@types/node-cron": "^3.0.10",
"@types/nodemailer": "^6.4.13"
}
}