-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
59 lines (59 loc) · 1.54 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
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "server",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start:ts": "tsc -w",
"start:js": "nodemon ./dist/index.js",
"start": "npm-run-all --parallel start:ts start:js",
"prodStart": "node ./dist/index.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@aws-sdk/client-s3": "^3.665.0",
"@socket.io/admin-ui": "^0.5.1",
"@socket.io/redis-adapter": "^8.3.0",
"@types/express": "^4.17.17",
"cloudinary": "^1.41.1",
"connect-redis": "^7.1.0",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"ejs": "^3.1.9",
"express": "^4.18.2",
"express-async-handler": "^1.2.0",
"express-session": "^1.17.3",
"joi": "^17.11.0",
"jsonwebtoken": "^9.0.2",
"moment": "^2.30.1",
"mongoose": "^7.5.1",
"morgan": "^1.10.0",
"multer": "^1.4.5-lts.1",
"nodemailer": "^6.9.8",
"nodemon": "^3.0.1",
"redis": "^4.6.15",
"sharp": "^0.33.1",
"socket.io": "^4.7.4",
"ts-node-dev": "^2.0.0",
"twilio": "^4.17.0",
"ua-parser-js": "^1.0.38",
"uuid": "^9.0.1"
},
"devDependencies": {
"@types/cookie-parser": "^1.4.4",
"@types/cors": "^2.8.14",
"@types/express-session": "^1.17.10",
"@types/jsonwebtoken": "^9.0.2",
"@types/morgan": "^1.9.5",
"@types/multer": "^1.4.11",
"@types/node": "^20.6.0",
"@types/nodemailer": "^6.4.14",
"@types/ua-parser-js": "^0.7.39",
"@types/uuid": "^9.0.7",
"npm-run-all": "^4.1.5",
"ts-node": "^10.9.1"
}
}