forked from TeleGrammy/backend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
95 lines (95 loc) · 2.64 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "telegrammy",
"version": "1.0.0",
"description": "The backend section of telegrammy",
"main": "index.js",
"engines": {
"node": ">=10.4.0"
},
"type": "commonjs",
"scripts": {
"start": "nodemon src/index.js",
"lint": "eslint .",
"start:prod": "cross-env NODE_ENV=production nodemon server.js",
"debug": "ndb src/index.js",
"test": "jest",
"coverage": "nyc --reporter=lcov --reporter=text npm run test-mocha",
"test-mocha": "mocha './src/tests/*.test.js'"
},
"repository": {
"type": "git",
"url": "https://github.com/TeleGrammy/backend.git"
},
"bugs": {
"url": "https://github.com/TeleGrammy/backend/issues"
},
"author": "",
"license": "ISC",
"dependencies": {
"@aws-sdk/client-rekognition": "^3.713.0",
"@aws-sdk/client-ses": "^3.670.0",
"@aws-sdk/lib-storage": "^3.674.0",
"@aws-sdk/s3-request-presigner": "^3.674.0",
"@sendgrid/mail": "^8.1.3",
"@socket.io/redis-adapter": "^8.3.0",
"@xenova/transformers": "^2.17.2",
"aws-sdk": "^2.1691.0",
"axios": "^1.7.7",
"bcrypt": "^5.1.1",
"bcryptjs": "^2.4.3",
"connect-mongo": "^5.1.0",
"cookie-parser": "^1.4.7",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.21.1",
"express-rate-limit": "^7.4.1",
"express-session": "^1.18.1",
"express-validator": "^7.2.0",
"firebase-admin": "^13.0.2",
"jsonwebtoken": "^9.0.2",
"mediasoup": "^3.15.2",
"mime": "^4.0.4",
"mime-types": "^2.1.35",
"mongo-connect": "^0.0.6",
"mongoose": "^8.8.3",
"multer": "^1.4.5-lts.1",
"multer-s3": "^3.0.1",
"node-cron": "^3.0.3",
"node-fetch": "^3.3.2",
"passport": "^0.7.0",
"passport-facebook": "^3.0.0",
"passport-github2": "^0.1.12",
"passport-google-oauth20": "^2.0.0",
"passport-oauth2-refresh": "^2.2.0",
"redis": "^4.7.0",
"request-ip": "^3.3.0",
"socket.io": "^4.8.1",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.1",
"telegrammy": "file:",
"uuid": "^10.0.0",
"validator": "^13.12.0"
},
"devDependencies": {
"@eslint/js": "^9.12.0",
"chai": "^4.5.0",
"chai-as-promised": "^7.0.0",
"eslint": "^8.57.1",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-node": "^4.1.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.2.1",
"globals": "^15.11.0",
"jest": "^29.7.0",
"mocha": "^10.8.2",
"morgan": "^1.10.0",
"ndb": "^0.2.4",
"nodemon": "^3.1.7",
"nyc": "^17.1.0",
"prettier": "^3.3.3",
"sinon": "^19.0.2",
"supertest": "^7.0.0"
}
}