-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 988 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 988 Bytes
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": "navi-bot",
"version": "0.1.0",
"description": "Hey! Listen!",
"main": "dist/index.js",
"scripts": {
"compile": "prisma generate && tsc",
"start": "npm run compile && node dist/index.js",
"dev": "tsc -w & nodemon dist/index.js --ignore db_backup/",
"watch": "tsc -w"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Mujaca/mujacabot.git"
},
"keywords": [
"Discord",
"DiscordJS"
],
"author": "Mujaca",
"license": "GPL",
"bugs": {
"url": "https://github.com/Mujaca/mujacabot/issues"
},
"homepage": "https://github.com/Mujaca/mujacabot#readme",
"dependencies": {
"@discordjs/core": "^0.5.2",
"@discordjs/rest": "^1.7.0",
"@prisma/client": "^5.11.0",
"axios": "^1.6.8",
"colors": "^1.4.0",
"cron": "^3.1.6",
"discord.js": "^14.14.1",
"dotenv": "^16.0.3",
"typescript": "^5.0.4"
},
"devDependencies": {
"nodemon": "^2.0.22",
"prisma": "^5.11.0"
}
}