-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 928 Bytes
/
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
40
41
{
"name": "craftystatus",
"version": "1.0.0",
"description": "A Discord bot to show real-time statuses of Minecraft servers hosted with Crafty Controller",
"main": "index.js",
"type": "module",
"private": true,
"scripts": {
"tsc": "tsc",
"prisma": "prisma",
"tsx": "tsx",
"dev": "tsx --watch src/index.ts"
},
"keywords": [
"minecraft",
"discord",
"bot",
"status"
],
"author": "6gh",
"license": "MIT",
"devDependencies": {
"@types/node": "^22.10.5",
"@types/node-cron": "^3.0.11",
"eslint": "^9.17.0",
"prisma": "^6.2.1",
"tsx": "^4.19.2",
"typescript": "^5.7.2"
},
"dependencies": {
"@prisma/client": "6.2.1",
"axios": "^1.7.9",
"canvas": "^3.0.1",
"chart.js": "^4.4.7",
"chartjs-adapter-date-fns": "^3.0.0",
"date-fns": "^4.1.0",
"discord.js": "^14.17.2",
"dotenv": "^16.4.7",
"node-cron": "^3.0.3"
}
}