-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 983 Bytes
/
Copy pathpackage.json
File metadata and controls
39 lines (39 loc) · 983 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
{
"name": "social_app",
"version": "1.0.0",
"main": "dist/index.js",
"author": "Mohammad",
"license": "GPL-3",
"private": true,
"scripts": {
"dev": "tsx watch --env-file=.env src/index.ts",
"build": "tsc",
"start": "node --env-file=.env dist/index.js"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.1045.0",
"@aws-sdk/s3-request-presigner": "^3.1045.0",
"bcrypt": "^6.0.0",
"cors": "^2.8.6",
"express": "^5.2.1",
"google-auth-library": "^10.6.2",
"graphql": "^16.14.0",
"graphql-http": "^1.22.4",
"jsonwebtoken": "^9.0.3",
"mongoose": "^9.4.1",
"nodemailer": "^8.0.5",
"redis": "^5.12.1",
"socket.io": "^4.8.3",
"zod": "^4.3.6"
},
"devDependencies": {
"@types/bcrypt": "^6.0.0",
"@types/express": "^5.0.6",
"@types/jsonwebtoken": "^9.0.10",
"@types/node": "^25.6.0",
"@types/nodemailer": "^8.0.0",
"tsx": "^4.21.0",
"typescript": "^6.0.3"
},
"type": "module"
}