-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
52 lines (52 loc) · 1.58 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
{
"name": "wasp-discord-bot",
"version": "1.0.0",
"description": "WaspBot (Discord)",
"author": "Martin Sosic (Wasp-lang)",
"scripts": {
"buildAndStartBot": "npm run build && npm run startBot",
"buildAndCalcAnalytics": "npm run build && npm run calcAnalytics",
"start": "npm run startBot",
"startBot": "node ./dist/bot.js",
"calcAnalytics": "node ./dist/analytics/cli.js",
"build": "tsc",
"postinstall": "COMMENT: We do building in this step because that way Heroku will run it at the right moment when deploying.",
"postinstall": "npm run build",
"prepare": "husky install",
"format": "prettier . --write",
"lint": "eslint ."
},
"dependencies": {
"asciichart": "^1.5.25",
"async-retry": "^1.3.3",
"axios": "^0.21.1",
"cli-table": "^0.3.11",
"discord.js": "^12.5.1",
"dotenv": "^16.0.3",
"image-charts": "^5.6.17",
"inspirational-quotes": "^1.0.8",
"lodash": "^4.17.21",
"moment": "^2.29.1",
"node-schedule": "^2.0.0",
"winston": "^3.3.3"
},
"devDependencies": {
"@types/async-retry": "^1.4.8",
"@types/cli-table": "^0.3.4",
"@types/lodash": "^4.14.201",
"@types/node": "^20.9.0",
"@types/node-schedule": "^2.1.3",
"@typescript-eslint/eslint-plugin": "^6.10.0",
"@typescript-eslint/parser": "^6.10.0",
"eslint": "^8.53.0",
"eslint-config-prettier": "^9.0.0",
"husky": "^8.0.3",
"lint-staged": "^15.0.2",
"prettier": "3.0.3",
"typescript": "^5.2.2"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown",
"*.{js,ts}": "eslint"
}
}