forked from veganhacktivists/arabot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.74 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
54
55
56
57
58
59
60
61
{
"name": "arabot",
"version": "0.4.1",
"description": "A Discord bot for Animal Rights Advocates",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"cleanBuild": "rm -rf ./dist && tsc",
"start": "node dist/index.js",
"start:migrate": "prisma migrate deploy && npm run start"
},
"imports": {
"#utils/*": "./dist/utils/*.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/veganhacktivists/arabot.git"
},
"keywords": [
"discord",
"veganism",
"sapphire",
"discordjs"
],
"author": "Animal Rights Advocates",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/veganhacktivists/arabot/issues"
},
"homepage": "https://github.com/veganhacktivists/arabot#readme",
"dependencies": {
"@prisma/client": "^5.0.0",
"@sapphire/discord.js-utilities": "^7.0.1",
"@sapphire/framework": "^4.5.1",
"@sapphire/plugin-logger": "^3.0.5",
"@sapphire/plugin-scheduled-tasks": "^7.1.1",
"@sapphire/plugin-subcommands": "^4.0.2",
"@sapphire/stopwatch": "^1.5.0",
"@sapphire/time-utilities": "^1.7.10",
"@sapphire/ts-config": "^4.0.1",
"@sapphire/utilities": "^3.13.0",
"@types/node": "^20.4.4",
"bullmq": "^4.6.0",
"discord.js": "^14.11.0",
"dotenv": "^16.3.1",
"redis": "^4.6.7",
"ts-node": "^10.9.1",
"typescript": "^5.1.6"
},
"devDependencies": {
"@types/ioredis": "^5.0.0",
"@typescript-eslint/eslint-plugin": "^6.1.0",
"@typescript-eslint/parser": "^6.1.0",
"eslint": "8.51.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.1.0",
"eslint-import-resolver-typescript": "^3.5.5",
"eslint-plugin-import": "^2.27.5",
"prisma": "^5.0.0"
}
}