forked from redwan-cse/multi-platform-bot-system
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.97 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2.97 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "multi-platform-bot-system",
"version": "1.0.0",
"description": "A multi-platform automation system leveraging AWS Lambda, DynamoDB, Cloudflare Workers, and Google Cloud Storage",
"main": "index.js",
"type": "module",
"scripts": {
"preinstall": "node scripts/verify-node-version.js",
"start": "node scripts/verify-node-version.js && node src/index.js",
"test": "node scripts/verify-node-version.js && NODE_OPTIONS='--experimental-vm-modules --no-warnings' jest",
"test:watch": "node scripts/verify-node-version.js && NODE_OPTIONS='--experimental-vm-modules --no-warnings' jest --watch",
"test:coverage": "node scripts/verify-node-version.js && NODE_OPTIONS='--experimental-vm-modules --no-warnings' jest --coverage",
"backup": "node scripts/verify-node-version.js && node scripts/backup.js",
"report": "node scripts/verify-node-version.js && node scripts/report.js",
"lint": "node scripts/verify-node-version.js && eslint src/**/*.js",
"deploy": "node scripts/verify-node-version.js && serverless deploy",
"monitor": "node scripts/verify-node-version.js && node scripts/monitor.js",
"check-types": "tsc --noEmit",
"validate": "npm run check-types && npm run lint && npm run test"
},
"dependencies": {
"@aws-sdk/client-dynamodb": "^3.x",
"@aws-sdk/lib-dynamodb": "^3.x",
"@google-cloud/storage": "^7.x",
"aws-sdk": "^2.1692.0",
"bad-words": "^3.x",
"csv-writer": "^1.6.0",
"discord.js": "^14.x",
"dotenv": "^16.x",
"express": "^4.x",
"glob": "^10.x",
"grammy": "^1.x",
"lru-cache": "^10.x",
"rate-limiter-flexible": "^3.x",
"rimraf": "^5.x",
"undici": "^6.x",
"uuid": "^9.x",
"validator": "^13.x",
"winston": "^3.x"
},
"devDependencies": {
"@types/jest": "^29.x",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"eslint": "^8.56.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-n": "^16.6.2",
"eslint-plugin-promise": "^6.1.1",
"jest": "^29.x",
"nodemon": "^3.x",
"serverless": "^3.x",
"serverless-offline": "^13.x"
},
"engines": {
"node": ">=22.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/redwan-cse/multi-platform-bot-system.git"
},
"bugs": {
"url": "https://github.com/redwan-cse/multi-platform-bot-system/issues"
},
"homepage": "https://github.com/redwan-cse/multi-platform-bot-system#readme",
"keywords": [
"discord",
"telegram",
"whatsapp",
"bot",
"aws",
"lambda",
"cloudflare",
"workers",
"backup",
"monitoring"
],
"author": "MD. REDWAN AHMED <contact@redwan.work>",
"license": "MIT"
}