-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1004 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 1004 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
31
32
33
34
35
36
37
38
{
"name": "weather-alert-bot",
"version": "1.2.1",
"main": "src/index.js",
"repository": "https://github.com/element-gaming/telegram-bot",
"author": "Andrea Tombolato <andreacw96@gmail.com> (https://github.com/andreacw5)",
"private": true,
"license": "MIT",
"scripts": {
"start": "nodemon src/index.js",
"start:docker": "node src/index.js"
},
"dependencies": {
"@logtail/pino": "^0.4.22",
"axios": "^1.7.2",
"date-fns": "^3.6.0",
"dotenv": "^16.4.5",
"joi": "^17.13.3",
"node-cron": "^3.0.3",
"pino": "^9.2.0",
"pino-pretty": "^11.2.1",
"telegraf": "3.40.0"
},
"devDependencies": {
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-node": "^4.1.0",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.1.3",
"nodemon": "^2.0.22",
"prettier": "^3.2.5"
},
"prettier": {
"singleQuote": true,
"trailingComma": "all"
}
}