-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.31 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.31 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
{
"name": "@licensechain/telegram-bot",
"version": "1.0.0",
"description": "LicenseChain Telegram Bot - Advanced Telegram integration for license management",
"main": "src/index.js",
"scripts": {
"start": "node src/index.js",
"dev": "nodemon src/index.js",
"test": "jest --passWithNoTests",
"lint": "eslint src/**/*.js",
"lint:fix": "eslint src/**/*.js --fix",
"prisma:push:safe": "node scripts/prisma-safe-push.mjs"
},
"keywords": [
"licensechain",
"telegram",
"bot",
"license",
"management",
"node-telegram-bot-api",
"automation"
],
"author": "LicenseChain LLC",
"license": "EPL-2.0",
"dependencies": {
"axios": "^1.7.9",
"dotenv": "^16.4.7",
"express": "^4.21.2",
"node-cron": "^3.0.3",
"node-telegram-bot-api": "^0.66.0",
"pg": "^8.13.0",
"winston": "^3.17.0"
},
"overrides": {
"form-data": "^4.0.1",
"tough-cookie": "^4.1.3"
},
"devDependencies": {
"eslint": "^9.18.0",
"jest": "^29.7.0",
"nodemon": "^3.1.9",
"prisma": "^5.22.0"
},
"engines": {
"node": ">=18.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/licensechain/telegram-bot.git"
},
"bugs": {
"url": "https://github.com/licensechain/telegram-bot/issues"
},
"homepage": "https://licensechain.app"
}