forked from noragerdin/discord-wrapped-tracking-bot
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.14 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.14 KB
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
{
"name": "tiny-meat-bot",
"version": "0.0.1",
"description": "",
"main": "./dist/TinyMeatBot.js",
"scripts": {
"build": "tsc -b src",
"dev": "npm run build && npm run start",
"start": "node --enable-source-maps dist/TinyMeatBot.js"
},
"author": "",
"license": "MIT",
"imports": {
"#root/*": "./dist/*.js",
"#lib/*": "./dist/lib/*.js",
"#utils/*": "./dist/lib/util/*.js"
},
"dependencies": {
"@prisma/client": "^4.7.0",
"@sapphire/decorators": "^5.0.0",
"@sapphire/discord-utilities": "^2.12.0",
"@sapphire/framework": "^3.1.4",
"@sapphire/plugin-logger": "^3.0.1",
"@sapphire/plugin-subcommands": "^3.2.3",
"@sapphire/utilities": "^3.11.0",
"colorette": "^2.0.19",
"discord-api-types": "^0.33.5",
"discord.js": "^13.12.0",
"reflect-metadata": "^0.1.13",
"twemoji-parser": "^14.0.0"
},
"devDependencies": {
"@sapphire/eslint-config": "^4.3.8",
"@sapphire/ts-config": "^3.3.4",
"@types/node": "^18.11.10",
"@types/twemoji-parser": "^13.1.1",
"eslint": "^8.28.0",
"prisma": "^4.7.0",
"ts-node": "^10.9.1",
"typescript": "^4.9.3"
}
}