-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 587 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 587 Bytes
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
{
"name": "telegram-subscription-bot",
"version": "1.0.0",
"description": "A Telegram bot for managing subscriptions with PayFast",
"main": "bot.js",
"scripts": {
"start": "node bot.js",
"dev": "nodemon bot.js"
},
"keywords": [
"telegram",
"bot",
"subscription",
"payments"
],
"author": "",
"license": "MIT",
"dependencies": {
"axios": "^1.6.2",
"body-parser": "^1.20.2",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"mongoose": "^7.6.3",
"telegraf": "^4.15.0"
},
"devDependencies": {
"nodemon": "^3.0.1"
}
}