-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
134 lines (134 loc) · 4.12 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
{
"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",
"scripts": {
"build": "npm run build:clean && npm run build:compile && npm run build:plugins && npm run type:check",
"build:start": "npm run build && npm run start",
"build:compile": "swc src -d build -D && rimraf build/plugins/**/node_modules/",
"build:clean": "rimraf build/",
"build:plugins": "installoop --rootDir=./build/plugins",
"start": "cross-env NODE_ENV=production node build/main.js",
"dev": "cross-env NODE_ENV=development nodemon --exec node -r @swc-node/register src/main.ts",
"dev:start": "cross-env NODE_ENV=production node -r @swc-node/register src/main.ts",
"dev:compile": "swc src -w -d build",
"i18n": "typesafe-i18n",
"type:check": "tsc --pretty --skipLibCheck --noEmit",
"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"
},
"dependencies": {
"@discordx/importer": "~1.2.1",
"@discordx/pagination": "~3.4.1",
"@discordx/utilities": "~5.2.1",
"@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.20.0",
"@tsed/core": "^7.20.0",
"@tsed/di": "^7.20.0",
"@tsed/exceptions": "^7.20.0",
"@tsed/json-mapper": "^7.20.0",
"@tsed/platform-express": "^7.20.0",
"@tsed/schema": "^7.20.0",
"@tsed/swagger": "^7.20.0",
"axios": "~1.3.5",
"body-parser": "^1.20.2",
"boxen": "~5.1.2",
"case": "~1.6.3",
"chalk": "~4.1.2",
"cron": "~2.3.0",
"cron-validator": "~1.3.1",
"cross-env": "~7.0.3",
"dayjs": "~1.11.7",
"discord-api-types": "~0.37.38",
"discord-logs": "~2.2.1",
"discord-oauth2": "~2.11.0",
"discord.js": "~14.9.0",
"discordx": "~11.7.4",
"dotenv": "~16.0.3",
"express": "^4.18.2",
"fast-folder-size": "~1.7.1",
"fs": "~0.0.1-security",
"http-status-codes": "~2.2.0",
"image-hash": "~5.3.1",
"imgur": "~2.2.0",
"installoop": "^1.1.0",
"joi": "~17.9.1",
"node-os-utils": "~1.3.7",
"openai": "^4.0.1",
"ora": "~5.4.1",
"pidusage": "~3.0.2",
"reflect-metadata": "~0.1.13",
"rentry-pastebin": "~1.3.0",
"rxeta": "~1.1.2",
"saveqlite": "~1.1.2",
"semver": "^7.5.2",
"socket.io-client": "~4.6.1",
"stacktrace-parser": "~0.1.10",
"swagger-ui-express": "~4.6.2",
"ts-toolbelt": "^9.6.0",
"tsyringe": "~4.7.0",
"typesafe-i18n": "^5.24.3",
"uuid": "~9.0.0"
},
"devDependencies": {
"@swc-node/register": "1.5.5",
"@swc/cli": "0.1.57",
"@swc/core": "1.3.27",
"@types/better-sqlite3": "~7.6.3",
"@types/body-parser": "^1.19.2",
"@types/cron": "~2.0.1",
"@types/dateformat": "~5.0.0",
"@types/express": "~4.17.17",
"@types/node": "~18.15.11",
"@types/node-os-utils": "~1.3.1",
"@types/pidusage": "~2.0.2",
"@types/semver": "^7.3.13",
"@types/swagger-ui-express": "~4.1.3",
"chokidar": "~3.5.3",
"ncp": "~2.0.0",
"nodemon": "~2.0.22",
"npm-run-all": "~4.1.5",
"plop": "^2.7.6",
"rimraf": "~3.0.2",
"ts-node": "~10.9.1",
"tsc-alias": "~1.8.5",
"tsconfig-paths": "~4.2.0",
"typescript": "~4.9.5"
},
"engines": {
"node": ">=16.9.0",
"npm": ">=8.0.0"
},
"mikro-orm": {
"useTsNode": true,
"configPaths": [
"./mikro-orm.config.ts",
"./build/mikro-orm.config.js"
]
},
"volta": {
"node": "16.17.0"
},
"nodemonConfig": {
"ignore": [
"src/i18n/**/!(i18n-types.ts)"
]
},
"tscord": {
"version": "2.2"
}
}