-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.32 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
{
"name": "server",
"version": "1.7.5",
"description": "",
"main": "dist/index.js",
"scripts": {
"dev": "tsx watch src/index.ts",
"build": "tsc --build --clean && tsc --build",
"start": "node dist/index.js",
"dev:dev": "concurrently \"npm run dev\" \"npm run dev --prefix client\"",
"build:build": "npm run build && npm run build --prefix client"
},
"keywords": [],
"author": "",
"license": "MIT",
"devDependencies": {
"@types/bcryptjs": "^2.4.6",
"@types/compression": "^1.7.5",
"@types/cookie-parser": "^1.4.8",
"@types/cors": "^2.8.17",
"@types/express": "^5.0.0",
"@types/jsonwebtoken": "^9.0.7",
"@types/morgan": "^1.9.9",
"@types/multer": "^1.4.12",
"@types/node": "^22.10.7",
"tsx": "^4.19.2",
"typescript": "^5.7.3"
},
"dependencies": {
"bcryptjs": "^2.4.3",
"bing-translate-api": "^4.0.2",
"cloudinary": "^2.5.1",
"compression": "^1.7.5",
"cookie-parser": "^1.4.7",
"cors": "^2.8.5",
"cron": "^3.5.0",
"dotenv": "^16.4.7",
"envalid": "^8.0.0",
"express": "^5.0.1",
"express-rate-limit": "^7.5.0",
"helmet": "^8.0.0",
"jsonwebtoken": "^9.0.2",
"mongoose": "^8.9.5",
"morgan": "^1.10.0",
"multer": "^1.4.5-lts.1",
"peer": "^1.0.2",
"socket.io": "^4.8.1",
"zod": "^3.24.1"
}
}