-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.06 KB
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 1.06 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
{
"name": "discord-welcome-bot",
"version": "1.0.0",
"description": "A customizable Discord welcome and leave message bot with dashboard",
"main": "index.js",
"scripts": {
"start": "node index.js",
"dev": "nodemon index.js",
"dashboard": "cd dashboard && npm run dev",
"start:all": "concurrently \"npm run dev\" \"npm run dashboard\"",
"install:all": "npm install && cd dashboard && npm install",
"build": "cd dashboard && npm run build",
"lint": "eslint .",
"start:unified": "node start.js"
},
"keywords": [
"discord",
"bot",
"welcome",
"leave",
"dashboard"
],
"author": "Titan X Dev ",
"license": "MIT",
"private": true,
"dependencies": {
"@upstash/ratelimit": "^1.0.1",
"@upstash/redis": "^1.28.4",
"concurrently": "^8.2.2",
"date-fns": "^2.30.0",
"discord.js": "^14.26.2",
"dotenv": "^16.3.1",
"mongodb": "^5.7.0",
"node-cron": "^3.0.2"
},
"optionalDependencies": {
"canvas": "^2.11.2"
},
"devDependencies": {
"eslint": "^8.57.0",
"nodemon": "^3.1.0"
}
}