-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
114 lines (114 loc) · 3.49 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "suisei-bot",
"version": "3.0.0",
"description": "A custom bot for the Hololive Resort Discord",
"main": "dist/index.js",
"scripts": {
"start": "node dist/index.js",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint \"./src/**\"",
"lint:ci": "eslint \"./src/**\" ;exit 0",
"lint:fix": "eslint --fix \"./src/**\"",
"build": "tsc -p tsconfig.production.json",
"dev:run": "node-dev --notify=false dist/index.js",
"watch": "tsc --watch",
"dev": "run-p watch dev:run",
"prepare": "husky install",
"db:push": "prisma-import -f && prisma db push",
"db:migrate": "prisma-import -f && prisma migrate dev",
"db:generate": "prisma-import -f && prisma generate",
"postinstall": "ts-patch install -s"
},
"engines": {
"node": "^18 || ^20 || ^22",
"pnpm": ">=8"
},
"dependencies": {
"@holores/bansapi.js": "^1.1.1",
"@holores/holodex": "^1.2.4",
"@prisma/client": "^5.22.0",
"@retracedhq/retraced": "^0.7.17",
"@sapphire/decorators": "^6.1.1",
"@sapphire/discord.js-utilities": "^7.3.1",
"@sapphire/framework": "4.7.2",
"@sapphire/pieces": "^3.10.0",
"@sapphire/plugin-api": "^5.2.0",
"@sapphire/plugin-logger": "^3.0.7",
"@sapphire/plugin-scheduled-tasks": "^7.1.2",
"@sapphire/plugin-subcommands": "^4.3.0",
"@sapphire/stopwatch": "^1.5.4",
"@sapphire/time-utilities": "^1.7.14",
"@sentry/integrations": "^7.114.0",
"@sentry/node": "^7.120.0",
"@sentry/tracing": "^7.114.0",
"axios": "^1.7.8",
"bufferutil": "^4.0.8",
"bullmq": "^4.18.2",
"discord.js": "^14.16.3",
"express": "^4.21.1",
"flagsmith-nodejs": "^3.3.3",
"humanize-duration": "^3.32.1",
"meilisearch": "^0.33.0",
"parse-duration": "^1.1.0",
"prisma": "^5.22.0",
"prisma-import": "^1.0.5",
"prom-client": "^14.2.0",
"re2": "^1.21.4",
"reflect-metadata": "^0.1.14",
"search-query-parser": "^1.6.0",
"string-template": "^1.0.0",
"tslib": "^2.8.1",
"typia": "^5.5.10",
"utf-8-validate": "^6.0.5",
"winston": "^3.17.0",
"winston-loki": "^6.1.3",
"zlib-sync": "^0.1.9"
},
"devDependencies": {
"@commitlint/cli": "^17.8.1",
"@commitlint/config-conventional": "^17.8.1",
"@sentry/types": "^7.120.0",
"@tsconfig/node18": "^18.2.4",
"@types/express": "^4.17.21",
"@types/humanize-duration": "^3.27.4",
"@types/node": "^20.17.9",
"@types/string-template": "^1.0.6",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"eslint": "^8.57.1",
"eslint-config-airbnb-base": "15.0.0",
"eslint-config-airbnb-typescript": "^17.1.0",
"eslint-import-resolver-typescript": "^3.6.3",
"eslint-plugin-import": "^2.31.0",
"husky": "^8.0.3",
"lint-staged": "^14.0.1",
"node-dev": "^8.0.0",
"npm-run-all": "^4.1.5",
"ts-node": "^10.9.2",
"ts-patch": "3.0.2",
"ttypescript": "1.5.15",
"typescript": "5.4.5",
"typescript-transform-paths": "^3.5.2"
},
"prisma": {
"import": {
"schemas": "prisma/schemas/*.prisma",
"output": "prisma/schema.prisma"
}
},
"lint-staged": {
"*.{js,ts,jsx,tsx}": [
"eslint --fix"
]
},
"repository": {
"type": "git",
"url": "git+https://bitbucket.org/holores/suisei-bot.git"
},
"author": "Hololive Resort",
"license": "MIT",
"bugs": {
"url": "https://bitbucket.org/holores/suisei-bot/issues"
},
"homepage": "https://bitbucket.org/holores/suisei-bot"
}