forked from TheDrone7/Wumpi
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
53 lines (53 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
53
{
"name": "wumpi",
"version": "1.0.0",
"description": "A discord moderation bot.",
"main": "dist/index.ts",
"scripts": {
"build": "tsc",
"watch": "tsc -w",
"start": "node dist/index.js",
"dev": "run-p watch start",
"watch:start": "tsc-watch --onSuccess \"node ./dist/index.js\"",
"format": "prettier --write \"src/**/**.ts\"",
"lint": "eslint --fix --color \"src/**/**.ts\""
},
"keywords": [],
"author": "TheDrone7",
"license": "MIT",
"dependencies": {
"@mikro-orm/core": "^4.5.10",
"@mikro-orm/postgresql": "^4.1.1",
"@sapphire/decorators": "^3.1.4",
"@sapphire/discord-utilities": "^2.2.3",
"@sapphire/discord.js-utilities": "^4.1.3",
"@sapphire/framework": "^2.2.0",
"@sapphire/plugin-editable-commands": "^1.1.3",
"@sapphire/plugin-scheduled-tasks": "^1.1.1",
"@sapphire/plugin-subcommands": "^2.1.3",
"@sapphire/stopwatch": "^1.2.5",
"@sapphire/time-utilities": "^1.4.9",
"@sapphire/type": "^2.1.2",
"@sapphire/utilities": "^3.1.0",
"bull": "^4.2.0",
"discord.js": "^13.3.1",
"dotenv": "^14.2.0",
"pino": "^7.6.2",
"pino-pretty": "^7.3.0"
},
"devDependencies": {
"@sapphire/plugin-hmr": "^1.0.0",
"@sapphire/ts-config": "^3.1.6",
"@types/bull": "^3.15.7",
"@types/node": "^17.0.0",
"@types/ws": "^8.2.0",
"@typescript-eslint/parser": "^5.9.0",
"eslint": "^8.6.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.5.0",
"tsc-watch": "^4.5.0",
"typescript": "^4.5.4"
}
}