-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.28 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.28 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
{
"name": "runewager-bot",
"version": "3.0.0",
"description": "Runewager GambleCodez Telegram bot — unified Node.js edition",
"main": "index.js",
"type": "commonjs",
"engines": {
"node": ">=20"
},
"scripts": {
"start": "node index.js",
"endpoint": "node backend.js",
"endpoint:check": "node --check backend.js",
"prod": "./prod-run.sh",
"health": "./health-check.sh",
"health:verbose": "./health-check.sh --verbose",
"health:status": "./health-check.sh --status",
"check": "node --check index.js",
"test": "node --test test/*.test.js",
"audit": "node scripts/ast_audit.js",
"testall:runtime": "node scripts/testall_runtime.js",
"backup:state": "./scripts/backup-runtime-state.sh",
"rollback": "./scripts/rollback.sh",
"rollback:list": "./scripts/rollback.sh --list",
"diagnose": "./scripts/self-diagnose.sh",
"pre-deploy": "./scripts/pre-deploy-checks.sh",
"cleanup:releases": "./scripts/cleanup-releases.sh",
"notify": "./scripts/notify-telegram.sh"
},
"dependencies": {
"dotenv": "^16.6.1",
"express": "4.22.1",
"rotating-file-stream": "^3.2.9",
"telegraf": "^4.16.3"
},
"devDependencies": {
"@babel/parser": "^7.29.0",
"@babel/traverse": "^7.29.0",
"@babel/types": "^7.29.0"
}
}