-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.38 KB
/
Copy pathpackage.json
File metadata and controls
55 lines (55 loc) · 1.38 KB
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": "arbiter",
"version": "0.1.0",
"type": "module",
"description": "Self-hosted Discord esports referee and tournament operations bot.",
"license": "Apache-2.0",
"author": "Abdullah (@devabdullahs)",
"homepage": "https://github.com/devabdullahs/Arbiter#readme",
"repository": {
"type": "git",
"url": "https://github.com/devabdullahs/Arbiter.git"
},
"bugs": {
"url": "https://github.com/devabdullahs/Arbiter/issues"
},
"keywords": [
"discord",
"discord-bot",
"discord.js",
"esports",
"tournament",
"tournament-operations",
"tournament-management",
"referee",
"match-management",
"battle-royale",
"self-hosted",
"postgresql",
"prisma",
"valorant",
"overwatch"
],
"engines": {
"node": ">=22.12.0"
},
"scripts": {
"deploy:commands": "node src/deploy-commands.js",
"db:generate": "prisma generate",
"db:deploy": "prisma migrate deploy",
"db:migrate": "prisma migrate dev",
"db:studio": "prisma studio",
"demo:seed": "node scripts/seed-demo.js",
"start": "node src/index.js",
"dev": "node --watch src/index.js",
"check": "node --check src/index.js && node --check src/deploy-commands.js && node --test"
},
"dependencies": {
"@prisma/client": "^5.22.0",
"discord.js": "^14.25.1",
"dotenv": "^17.4.2"
},
"devDependencies": {
"prisma": "^5.22.0"
}
}