-
Notifications
You must be signed in to change notification settings - Fork 35
/
package.json
52 lines (52 loc) · 1.32 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
40
41
42
43
44
45
46
47
48
49
50
51
52
{
"name": "alita",
"private": true,
"version": "3.0.0",
"description": "A Discord.js bot using MongoDB (npm package Mongoose) to create a bot people can use to learn Discord.js",
"main": "Alita.js",
"scripts": {
"test": "jest --maxWorkers=50%",
"start": "node Alita.js",
"migrate": "node ./scripts/migrateDbFromV1ToV2.js",
"watch": "nodemon Alita.js --wait 1500",
"upload:global": "node ./scripts/interactions.js",
"upload:guild": "node ./scripts/interactionsForGuild.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/KSJaay/Alita.git"
},
"keywords": [
"alita",
"bot",
"discord",
"discord.js",
"discordjs",
"discord.js guide",
"discord.js help",
"mongo",
"mongoose",
"nodejs"
],
"author": "KSJaay",
"license": "GNU General Public License v3.0",
"bugs": {
"url": "https://github.com/KSJaay/Alita/issues"
},
"homepage": "https://github.com/KSJaay/Alita#readme",
"dependencies": {
"axios": "^1.4.0",
"canvas": "^2.11.2",
"chart.js": "^2.9.4",
"chartjs-node-canvas": "^3.2.0",
"discord.js": "^14.11.0",
"dotenv": "^16.3.1",
"mongoose": "^7.3.1",
"winston": "^3.9.0",
"winston-daily-rotate-file": "^4.7.1"
},
"devDependencies": {
"jest": "^29.5.0",
"nodemon": "^2.0.22"
}
}