-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
42 lines (42 loc) · 1.23 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
{
"name": "heavy-division-bot",
"version": "0.1.16",
"description": "Chat, support, and moderation bot for the Heavy Division Discord",
"main": "src/index.js",
"scripts": {
"build:typescript": "tsc",
"run:node": "node build/index.js",
"dev": "nodemon --watch src/ -e ts --exec ts-node src/index.ts",
"run": "npm run build:typescript && npm run run:node",
"watch": "-tsc -w",
"lint": "eslint src/**/**/*.ts",
"lint-fix": "eslint src/**/**/*.ts --fix"
},
"author": "Heavy Division Simulations",
"license": "AGPL 3.0",
"dependencies": {
"@elastic/ecs-winston-format": "^1.1.0",
"@types/bad-words": "^3.0.3",
"bad-words": "^3.0.4",
"cowsay": "^1.5.0",
"discord.js": "^14.0.3",
"elastic-apm-node": "^3.35.0",
"express": "^4.17.3",
"got": "^12.1.0",
"moment": "^2.29.4",
"mongoose": "^7.1.0",
"request": "^2.88.2",
"winston": "^3.3.4"
},
"devDependencies": {
"@heavy-division/eslint-config": "^0.1.0",
"@types/node": "^18.0.0",
"@typescript-eslint/eslint-plugin": "^4.28.5",
"@typescript-eslint/parser": "^4.28.5",
"dotenv": "^16.0.0",
"eslint": "^7.29.0",
"nodemon": "^2.0.19",
"ts-node": "^10.4.0",
"typescript": "^5.0.4"
}
}