-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
135 lines (135 loc) · 4.04 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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
{
"name": "lnreader-bot",
"version": "1.0.0",
"description": "LNReader Discord bot for quick support",
"license": "MIT",
"main": "build/main.js",
"tscord": {
"version": "2.3"
},
"scripts": {
"build": "npm run build:clean && npm run build:compile && npm run install:plugins",
"build:clean": "rimraf build/",
"build:compile": "tsc --project tsconfig.json --skipLibCheck && npm run build:alias",
"build:alias": "tsc-alias -p tsconfig.json",
"build:start": "npm run build && npm run start",
"install:plugins": "installoop --rootDir=./build/plugins",
"type:check": "tsc --pretty --skipLibCheck --noEmit",
"start": "cross-env NODE_ENV=production node build/main.js",
"dev": "cross-env NODE_ENV=development nodemon --exec ts-node --transpile-only src/main.ts",
"i18n": "typesafe-i18n",
"migration:create": "npx mikro-orm migration:create",
"migration:up": "npx mikro-orm migration:up",
"migration:down": "npx mikro-orm migration:down",
"plugins:install": "installoop --rootDir=./src/plugins",
"postinstall": "npm run plugins:install",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
"dependencies": {
"@discordx/importer": "~1.2.1",
"@discordx/pagination": "~3.5.0",
"@discordx/utilities": "~6.1.0",
"@mikro-orm/better-sqlite": "~5.6.16",
"@mikro-orm/cli": "~5.6.16",
"@mikro-orm/core": "~5.6.16",
"@mikro-orm/mariadb": "~5.6.16",
"@mikro-orm/migrations": "~5.6.16",
"@mikro-orm/mongodb": "~5.6.16",
"@mikro-orm/mysql": "~5.6.16",
"@mikro-orm/postgresql": "~5.6.16",
"@mikro-orm/sql-highlighter": "~1.0.1",
"@mikro-orm/sqlite": "~5.6.16",
"@tsed/common": "^7.61.0",
"@tsed/core": "^7.61.0",
"@tsed/di": "^7.61.0",
"@tsed/exceptions": "^7.61.0",
"@tsed/json-mapper": "^7.61.0",
"@tsed/platform-express": "^7.61.0",
"@tsed/schema": "^7.61.0",
"@tsed/swagger": "^7.61.0",
"archiver": "^6.0.1",
"axios": "~1.6.7",
"body-parser": "^1.20.2",
"boxen": "~5.1.2",
"case": "~1.6.3",
"chalk": "~4.1.2",
"chokidar": "~3.6.0",
"cron": "~2.4.4",
"cron-validator": "~1.3.1",
"cross-env": "~7.0.3",
"dayjs": "~1.11.10",
"discord-api-types": "~0.37.68",
"discord-logs": "~2.2.1",
"discord-oauth2": "~2.12.0",
"discord.js": "~14.14.1",
"discordx": "~11.9.0",
"dotenv": "~16.4.1",
"envalid": "^8.0.0",
"express": "^4.18.2",
"fast-folder-size": "~2.2.0",
"fs": "~0.0.1-security",
"http-status-codes": "~2.3.0",
"image-hash": "~5.3.2",
"imgur": "~2.4.2",
"installoop": "^1.1.0",
"joi": "~17.12.1",
"node-os-utils": "~1.3.7",
"ora": "~5.4.1",
"pidusage": "~3.0.2",
"reflect-metadata": "~0.1.14",
"rentry-pastebin": "~1.3.0",
"rxeta": "~1.1.2",
"saveqlite": "~1.1.2",
"semver": "^7.6.0",
"stacktrace-parser": "~0.1.10",
"swagger-ui-express": "~5.0.0",
"ts-toolbelt": "^9.6.0",
"tsyringe": "~4.8.0",
"typesafe-i18n": "^5.26.2",
"uuid": "~9.0.1"
},
"devDependencies": {
"@antfu/eslint-config": "^2.6.4",
"@types/archiver": "^6.0.2",
"@types/better-sqlite3": "~7.6.9",
"@types/body-parser": "^1.19.5",
"@types/cron": "~2.4.0",
"@types/dateformat": "~5.0.2",
"@types/express": "~4.17.21",
"@types/node": "~20.11.16",
"@types/node-os-utils": "~1.3.4",
"@types/pidusage": "~2.0.5",
"@types/semver": "^7.5.6",
"@types/swagger-ui-express": "~4.1.6",
"eslint-plugin-simple-import-sort": "^11.0.0",
"ncp": "~2.0.0",
"nodemon": "~3.0.3",
"npm-run-all": "~4.1.5",
"plop": "^2.7.6",
"rimraf": "~5.0.5",
"ts-node": "~10.9.2",
"tsc-alias": "~1.8.8",
"tsconfig-paths": "~4.2.0",
"typescript": "~5.3.3"
},
"engines": {
"node": ">=18"
},
"volta": {
"node": "20.11.0"
},
"mikro-orm": {
"useTsNode": true,
"configPaths": [
"./mikro-orm.config.ts",
"./build/mikro-orm.config.js"
]
},
"nodemonConfig": {
"ignore": [
"src/i18n/**/!(i18n-types.ts)",
"src/{events,commands}/**/*.{ts,js}"
]
}
}