-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.14 KB
/
Copy pathpackage.json
File metadata and controls
46 lines (46 loc) · 1.14 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
{
"name": "socia-media-blog",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"start": "nodemon dist/app.js",
"dev": " nodemon src/app.ts",
"dev:watch": "nodemon --watch 'src/**/*.ts' src/app.ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"devDependencies": {
"@types/cookie-parser": "^1.4.8",
"@types/cors": "^2.8.17",
"@types/express": "^5.0.1",
"@types/jsonwebtoken": "^9.0.9",
"@types/redis": "^4.0.10",
"nodemon": "^3.1.9",
"typescript": "^5.8.2"
},
"dependencies": {
"@types/bcrypt": "^5.0.2",
"@types/node": "^22.13.13",
"@types/passport": "^1.0.17",
"@types/passport-google-oauth20": "^2.0.16",
"axios": "^1.8.4",
"bcrypt": "^5.1.1",
"cookie-parser": "^1.4.7",
"cors": "^2.8.5",
"dotenv": "^16.4.7",
"express": "^4.21.2",
"express-rate-limit": "^7.5.0",
"ioredis": "^5.6.0",
"jsonwebtoken": "^9.0.2",
"mongodb": "^6.15.0",
"mongoose": "^8.13.0",
"passport": "^0.7.0",
"redis": "^4.7.0",
"resend": "^4.5.1",
"tough-cookie": "^5.1.2",
"winston": "^3.17.0",
"zod": "^4.0.5"
}
}