forked from MELLIFERA-Labs/kyvechecker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 1.17 KB
/
package.json
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
{
"name": "kyve-bot",
"version": "1.0.0",
"description": "This bot was created to manage KYVE (https://app.kyve.network/) nodes. You can easily add your own nodes or which you\ndelegate. If a node is out of your threshold, you will be notified",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node index.js",
"start:local": "DEBUG=\"grammy*\" nodemon index.js",
"format:check": "prettier --check .",
"format:write": "prettier --write .",
"lint:check": "eslint .",
"lint:fix": "eslint --fix .",
"prepare": "husky install"
},
"author": "ruslanglaznyov",
"license": "MIT",
"dependencies": {
"@grammyjs/hydrate": "^1.0.3",
"@grammyjs/stateless-question": "^3.0.1",
"axios": "^0.26.1",
"bignumber.js": "^9.0.2",
"commander": "^9.0.0",
"grammy": "^1.6.1",
"mongodb": "^4.3.0",
"tslog": "^3.3.1"
},
"devDependencies": {
"eslint": "^8.9.0",
"eslint-config-prettier": "^8.4.0",
"husky": "^7.0.4",
"nodemon": "^2.0.15",
"prettier": "^2.5.1"
}
}