-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
89 lines (89 loc) · 2.55 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "bloombot",
"version": "1.1.0",
"description": "A private bot for the Nightbloom FC Discord server.",
"author": "Jeroen Claassens <[email protected]>",
"license": "Apache-2.0",
"module": "dist/bloombot.js",
"private": true,
"type": "module",
"imports": {
"#lib/*": "./dist/lib/*.js",
"#root/*": "./dist/*.js",
"#utils/*": "./dist/lib/util/*.js",
"#lib/env": "./dist/lib/env/index.js"
},
"scripts": {
"start": "node --preserve-symlinks --enable-source-maps dist/bloombot.js",
"lint": "eslint --fix",
"format": "prettier --write .",
"prisma:generate": "prisma generate",
"build": "tsup",
"watch": "tsup --watch",
"clean": "rimraf dist/",
"typecheck": "tsc -b src",
"dev": "tsup --watch --onSuccess \"yarn start\""
},
"prisma": {
"seed": "tsx prisma/initial-data-seed.ts"
},
"dependencies": {
"@prisma/client": "^6.3.0",
"@sapphire/decorators": "^6.1.1",
"@sapphire/discord.js-utilities": "^7.3.2",
"@sapphire/fetch": "^3.0.5",
"@sapphire/framework": "^5.3.2",
"@sapphire/plugin-logger": "^4.0.2",
"@sapphire/plugin-scheduled-tasks": "^10.0.2",
"@sapphire/utilities": "^3.18.2",
"@skyra/env-utilities": "^1.3.0",
"@skyra/jaro-winkler": "^1.1.1",
"@skyra/start-banner": "^2.0.1",
"bufferutil": "^4.0.9",
"bullmq": "^5.39.2",
"colorette": "^2.0.20",
"date-fns": "^4.1.0",
"discord.js": "patch:discord.js@npm%3A14.17.2#~/.yarn/patches/discord.js-npm-14.17.2-2c6ecf1c86.patch",
"figlet": "^1.8.0",
"gradient-string": "^3.0.0",
"utf-8-validate": "^6.0.5",
"ws": "^8.18.0",
"zlib-sync": "^0.1.9"
},
"devDependencies": {
"@commitlint/cli": "^19.6.1",
"@commitlint/config-conventional": "^19.6.0",
"@favware/discord-application-emojis-manager": "^1.1.1",
"@sapphire/prettier-config": "^2.0.0",
"@sapphire/ts-config": "^5.0.1",
"@swc/core": "^1.10.12",
"@types/figlet": "^1.7.0",
"@types/gradient-string": "^1.1.6",
"@types/node": "^22.13.0",
"@types/ws": "^8.5.14",
"@typescript-eslint/eslint-plugin": "^8.20.0",
"@typescript-eslint/parser": "^8.20.0",
"eslint": "^9.19.0",
"eslint-config-neon": "^0.2.4",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-prettier": "^5.2.3",
"lint-staged": "^15.4.3",
"prettier": "^3.4.2",
"prettier-plugin-prisma": "^5.0.0",
"prisma": "^6.3.0",
"rimraf": "^6.0.1",
"tsup": "^8.3.6",
"tsx": "^4.19.2",
"typescript": "~5.4.5"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"lint-staged": {
"*": "prettier --ignore-unknown --write",
"*.{mjs,js,ts}": "eslint --fix"
},
"packageManager": "[email protected]"
}