-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.28 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.28 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
{
"name": "timerbot",
"version": "3.1.0",
"description": "A powerful time-based bot allowing you to create detailed timers, alarms, and reminders in your Discord server effortlessly.",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/BrianWalczak/TimerBot.git"
},
"scripts": {
"start": "npm run db/migrate:prod && npm run db/generate && node index.js",
"db/generate": "npx prisma generate",
"db/migrate:dev": "npx prisma migrate dev",
"db/migrate:prod": "npx prisma migrate deploy",
"db/loki-migrate": "node tools/loki-migrate.js"
},
"keywords": [
"discord",
"discordjs",
"bot",
"discord bot",
"timer",
"reminder",
"utilities"
],
"author": "Brian Walczak",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/BrianWalczak/TimerBot/issues"
},
"homepage": "https://github.com/BrianWalczak/TimerBot#readme",
"dependencies": {
"@discordjs/rest": "^2.5.0",
"@prisma/client": "^6.13.0",
"chalk": "^4.1.2",
"discord-api-types": "^0.38.11",
"discord.js": "^14.19.3",
"express": "^5.1.0",
"ics": "^3.8.1",
"luxon": "^3.6.1",
"prisma": "^6.13.0",
"ulid": "^3.0.1"
},
"devDependencies": {
"enquirer": "^2.4.1",
"lokijs": "^1.5.12"
}
}