-
-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathpackage.json
129 lines (129 loc) · 3.92 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
{
"name": "tscord",
"version": "1.0.0",
"description": "A fully-featured discord bot template written in Typescript, intended to provide a framework that's easy to use, extend and modify",
"license": "MIT",
"main": "build/main.js",
"tscord": {
"version": "2.4"
},
"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.3.1",
"@discordx/pagination": "~3.5.5",
"@discordx/utilities": "~7.0.3",
"@mikro-orm/cli": "~6.4.3",
"@mikro-orm/core": "~6.4.3",
"@mikro-orm/entity-generator": "~6.4.3",
"@mikro-orm/migrations": "~6.4.3",
"@mikro-orm/sql-highlighter": "~1.0.1",
"@mikro-orm/sqlite": "~6.4.3",
"@tsed/common": "^7.84.1",
"@tsed/core": "^7.84.1",
"@tsed/di": "^7.84.1",
"@tsed/exceptions": "^7.84.1",
"@tsed/json-mapper": "^7.84.1",
"@tsed/platform-express": "^7.84.1",
"@tsed/schema": "^7.84.1",
"@tsed/swagger": "^7.84.1",
"archiver": "^7.0.1",
"axios": "~1.7.9",
"body-parser": "^1.20.3",
"boxen": "~5.1.2",
"case": "~1.6.3",
"chalk": "~4.1.2",
"chokidar": "~3.6.0",
"cron": "~3.2.1",
"cron-validator": "~1.3.1",
"cross-env": "~7.0.3",
"dayjs": "~1.11.13",
"discord-api-types": "~0.37.115",
"discord-logs": "~2.2.1",
"discord-oauth2": "~2.12.1",
"discord.js": "~14.16.3",
"discordx": "~11.12.2",
"dotenv": "^16.4.7",
"envalid": "^8.0.0",
"express": "^4.21.2",
"fast-folder-size": "~2.3.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.13.3",
"node-os-utils": "~1.3.7",
"ora": "~5.4.1",
"pidusage": "~3.0.2",
"reflect-metadata": "~0.2.2",
"rentry-pastebin": "~1.3.0",
"rxeta": "~1.1.2",
"saveqlite": "~1.1.2",
"semver": "^7.6.3",
"stacktrace-parser": "~0.1.10",
"swagger-ui-express": "~5.0.1",
"ts-toolbelt": "^9.6.0",
"tsyringe": "~4.8.0",
"typesafe-i18n": "^5.26.2",
"uuid": "^11.0.5"
},
"devDependencies": {
"@antfu/eslint-config": "^2.6.4",
"@types/archiver": "^6.0.3",
"@types/body-parser": "^1.19.5",
"@types/dateformat": "~5.0.2",
"@types/express": "~4.17.21",
"@types/node": "~20.17.9",
"@types/node-os-utils": "~1.3.4",
"@types/pidusage": "~2.0.5",
"@types/semver": "^7.5.8",
"@types/swagger-ui-express": "~4.1.7",
"eslint-plugin-simple-import-sort": "^12.1.1",
"ncp": "~2.0.0",
"nodemon": "^3.1.9",
"npm-run-all": "~4.1.5",
"plop": "^2.7.6",
"rimraf": "~5.0.10",
"ts-node": "~10.9.2",
"tsc-alias": "~1.8.10",
"tsconfig-paths": "~4.2.0",
"typescript": "^5.7.3"
},
"engines": {
"node": ">=22"
},
"volta": {
"node": "22.13.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}"
]
}
}