-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
34 lines (34 loc) · 1.08 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
{
"name": "heimdallbot",
"version": "1.0.0",
"description": "Bot for notifications about new Odin protocol proposals",
"main": "./src/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "NODE_ENV=production node ./src/index.js run",
"setup": "NODE_ENV=prodction node ./src/set-up-data.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",
"devDependencies": {
"eslint": "^8.13.0",
"eslint-config-prettier": "^8.5.0",
"husky": "^7.0.4",
"prettier": "^2.6.2"
},
"dependencies": {
"@discordjs/rest": "^0.3.0",
"axios": "^0.26.1",
"commander": "^9.2.0",
"discord-api-types": "^0.31.1",
"discord.js": "^13.6.0",
"grammy": "^1.7.3",
"tslog": "^3.3.3"
}
}