-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
40 lines (40 loc) · 1.06 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
{
"name": "bigbro",
"version": "0.0.0",
"private": true,
"license": "MIT",
"type": "module",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"dev": "tsc-watch --onSuccess \"dotenvx run -- npm start\"",
"format": "prettier --write .",
"lint": "eslint src",
"lint:fix": "eslint --fix src",
"start": "node --enable-source-maps dist"
},
"dependencies": {
"@sapphire/decorators": "6.1.0",
"@sapphire/framework": "5.2.1",
"@sapphire/plugin-logger": "4.0.2",
"@sapphire/plugin-subcommands": "7.0.0",
"colorette": "2.0.20",
"discord.js": "14.16.1",
"lru-cache": "11.0.1",
"mongodb": "6.8.1"
},
"devDependencies": {
"@dotenvx/dotenvx": "1.14.0",
"@eslint/js": "9.10.0",
"@sapphire/ts-config": "5.0.1",
"eslint": "9.10.0",
"eslint-config-prettier": "9.1.0",
"globals": "15.9.0",
"prettier": "3.3.3",
"prettier-plugin-packagejson": "2.5.2",
"prettier-plugin-sort-imports": "1.8.6",
"tsc-watch": "6.2.0",
"typescript": "5.5.4",
"typescript-eslint": "8.4.0"
}
}