-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
63 lines (63 loc) · 1.76 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
53
54
55
56
57
58
59
60
61
62
63
{
"name": "melvin",
"version": "2.3.2",
"description": "An advanced RPG dice and initiative trackerr bot for Discord",
"main": "dist/index.js",
"scripts": {
"start": "node dist/index.js",
"dev": "NODE_ENV=development nodemon --watch src -e ts --exec \"npm run build && npm run start\"",
"build": "tsc",
"migrate-deploy": "prisma migrate deploy",
"prisma-generate": "prisma generate",
"postinstall": "npm run prisma-generate"
},
"keywords": [
"dice",
"bot",
"RPG",
"d&d",
"discord",
"discord.js",
"roll"
],
"author": "LordLuceus <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/LordLuceus/melvin.git"
},
"dependencies": {
"@dice-roller/rpg-dice-roller": "^5.2.1",
"@discordjs/opus": "^0.9.0",
"@discordjs/voice": "^0.16.1",
"@prisma/client": "^5.13.0",
"@sapphire/discord.js-utilities": "^6.0.7",
"@sapphire/framework": "^5.1.0",
"@sapphire/pieces": "^4.2.2",
"@sapphire/plugin-logger": "^4.0.2",
"@sapphire/plugin-subcommands": "^6.0.3",
"@sapphire/utilities": "^3.15.3",
"bufferutil": "^4.0.5",
"discord.js": "^14.10.2",
"dotenv": "^16.0.3",
"ms": "^2.1.3",
"sodium": "^3.0.2",
"utf-8-validate": "^5.0.7",
"zlib-sync": "^0.1.9"
},
"devDependencies": {
"@types/ms": "^0.7.31",
"@types/node": "^20.12.7",
"@typescript-eslint/eslint-plugin": "^5.28.0",
"@typescript-eslint/parser": "^5.28.0",
"eslint": "^8.6.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.3",
"nodemon": "^3.1.0",
"prettier": "^2.5.0",
"prisma": "^5.13.0",
"ts-node": "^10.9.1",
"typescript": "^4.7.2"
}
}