-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 733 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 733 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
30
{
"name": "telegram-bot-example",
"version": "1.0.0",
"description": "Example of a telegram bot with Telegraf",
"main": "src/index.js",
"scripts": {
"start": "node src/index.js",
"test": "echo \"Error: no test specified\" && exit 1",
"lint:fix": "npx eslint \"**/*.{js,jsx}\" --fix"
},
"keywords": [
"telegram-bot",
"telegraf"
],
"author": "SatsCzar",
"license": "Unlicense",
"dependencies": {
"cron": "^2.3.1",
"cron-validator": "^1.3.1",
"cronstrue": "^2.28.0",
"dotenv": "^16.3.1",
"telegraf": "^4.12.2"
},
"devDependencies": {
"eslint": "^8.45.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^5.0.0",
"prettier": "^3.0.0"
}
}