-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.66 KB
/
Copy pathpackage.json
File metadata and controls
65 lines (65 loc) · 1.66 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "backend",
"version": "1.0.0",
"scripts": {
"build": "tsc && tsc-alias",
"start": "node ./dist/server.js",
"dev": "nodemon -L",
"lint": "eslint src/**/*.ts",
"lint:fix": "eslint src/**/*.ts --fix",
"format": "prettier --write src/**/*.ts",
"test": "jest",
"test:watch": "jest --watch"
},
"keywords": [],
"author": "Vladislav Koshelev",
"license": "ISC",
"description": "",
"dependencies": {
"@aws-sdk/client-s3": "^3.948.0",
"amqplib": "^1.0.3",
"bcryptjs": "^3.0.3",
"cookie-parser": "^1.4.7",
"cors": "^2.8.5",
"crypto": "^1.0.1",
"express": "^5.2.1",
"ioredis": "^5.8.2",
"mediasoup": "^3.19.14",
"mongoose": "^8.19.2",
"morgan": "^1.10.1",
"multer": "^2.0.2",
"nodemailer": "^8.0.5",
"socket.io": "^4.8.1",
"tsconfig-paths": "^4.2.0",
"ua-parser-js": "^2.0.6",
"zod": "^4.1.13"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"@types/amqplib": "^0.10.8",
"@types/cookie": "^0.6.0",
"@types/cookie-parser": "^1.4.10",
"@types/cookie-signature": "^1.1.2",
"@types/cors": "^2.8.19",
"@types/express": "^5.0.5",
"@types/jest": "^30.0.0",
"@types/morgan": "^1.9.10",
"@types/multer": "^2.0.0",
"@types/node": "^24.9.2",
"@types/nodemailer": "^8.0.0",
"eslint": "^9.39.2",
"jest": "^30.2.0",
"jiti": "^2.6.1",
"nodemon": "^3.1.10",
"prettier": "^3.6.2",
"ts-jest": "^29.4.5",
"ts-node": "^10.9.2",
"tsc-alias": "^1.8.10",
"typescript": "^5.9.3",
"typescript-eslint": "^8.50.1"
},
"repository": {
"type": "git",
"url": "https://github.com/patchcordchat/backend"
}
}