forked from veganhacktivists/arabot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.57 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
{
"name": "arabot",
"version": "0.0.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"
},
"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": "^4.0.0",
"@sapphire/discord.js-utilities": "^5.0.0",
"@sapphire/framework": "^3.0.0",
"@sapphire/plugin-scheduled-tasks": "^4.0.0",
"@sapphire/plugin-subcommands": "^3.0.0",
"@sapphire/stopwatch": "^1.4.1",
"@sapphire/ts-config": "^3.3.4",
"@sapphire/utilities": "^3.9.2",
"@types/node": "^18.0.3",
"bullmq": "^1.89.1",
"discord-api-types": "^0.33.3",
"discord.js": "^13.10.3",
"dotenv": "^16.0.1",
"prisma": "^4.2.1",
"ts-node": "^10.8.2",
"typescript": "^4.7.4"
},
"devDependencies": {
"@types/ioredis": "^4.28.10",
"@typescript-eslint/eslint-plugin": "^5.30.7",
"@typescript-eslint/parser": "^5.30.7",
"eslint": "^8.20.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-plugin-import": "^2.26.0"
}
}