-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1.03 KB
/
Copy pathpackage.json
File metadata and controls
35 lines (35 loc) · 1.03 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
{
"name": "absolute-discord-bot",
"version": "1.0.0",
"description": "A Discord bot that connects to the Pokemon Absolute database to serve real-time data over Discord.",
"repository": "https://github.com/Toxocious/Absolute-Discord-Bot.git",
"author": "Jess <toxocious@gmail.com>",
"license": "MIT",
"private": false,
"main": "./build/bot.js",
"scripts": {
"build": "tsc",
"lint": "eslint . --ext .ts",
"lint-and-fix": "eslint . --ext .ts --fix",
"start:prod": "node -r dotenv/config ./build/bot.js",
"start:dev": "nodemon ./src/bot.ts"
},
"dependencies": {
"@discordjs/rest": "^0.4.1",
"chalk": "^5.3.0",
"discord.js": "^14.5.0",
"dotenv": "^16.0.0",
"mysql2": "^2.3.3",
"ts-node": "^10.7.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/node": "^17.0.29",
"@typescript-eslint/eslint-plugin": "^6.7.4",
"@typescript-eslint/parser": "^6.7.4",
"discord-api-types": "^0.32.0",
"eslint": "^8.50.0",
"nodemon": "^2.0.15",
"typescript": "^5.2.2"
}
}