generated from ppauel/typescript-discord-bot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.06 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
{
"name": "uptime-bot",
"version": "2.0.0",
"description": "A TypeScript Discord bot for discord server moderation",
"main": "dist/bot.js",
"scripts": {
"start": "npm run start:bot",
"prestart:bot": "npm run build",
"start:bot": "node ./dist/bot.js",
"dev": "nodemon src/bot.ts",
"build": "tsc --project tsconfig.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Uptime-Lab/Uptime-Bot.git"
},
"author": "bowenjw",
"license": "MIT",
"bugs": {
"url": "https://github.com/Uptime-Lab/Uptime-Bot/issues"
},
"homepage": "https://github.com/Uptime-Lab/Uptime-Bot#readme",
"dependencies": {
"@fluent/bundle": "^0.18.0",
"discord.js": "^14.11.0",
"dotenv": "^16.0.3",
"rss-parser": "^3.13.0"
},
"devDependencies": {
"@types/node": "^20.1.2",
"@types/node-schedule": "^2.1.0",
"@typescript-eslint/eslint-plugin": "^5.59.5",
"@typescript-eslint/parser": "^5.59.5",
"eslint": "^8.40.0",
"nodemon": "^2.0.22",
"ts-node": "^10.9.1",
"typescript": "^5.0.4"
}
}