This repository was archived by the owner on May 12, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.92 KB
/
Copy pathpackage.json
File metadata and controls
73 lines (73 loc) · 2.92 KB
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
{
"name": "khaxyrewrite",
"version": "2.1.4",
"packageManager": "pnpm@10.11.1",
"type": "module",
"description": "",
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "https://github.com/Arsabutispik/Khaxy.git"
},
"scripts": {
"deploy-commands": "pnpm -F @repo/database run build && tsc && tsc-alias && dotenv -e ../../.env -- node --enable-source-maps dist/utils/system/deployCommands.js",
"remove-commands": "pnpm -F @repo/database run build && tsc && tsc-alias && dotenv -e ../../.env -- node --enable-source-maps dist/utils/system/removeCommands.js",
"db:deploy": "pnpm -F @repo/database exec -- dotenv -e ../../.env -- prisma migrate deploy",
"build": "pnpm -F @repo/database run build && tsc && tsc-alias",
"start": "node --enable-source-maps .",
"predev": "pnpm i18n:gen && pnpm -F @repo/database run build",
"dev": "nodemon --watch src --ext ts,json,yml,yaml --exec \"pnpm i18n:gen && tsc && tsc-alias && dotenv -e ../../.env -- node --enable-source-maps .\"",
"lint": "eslint ",
"type-check": "tsc --noEmit",
"i18n:validate": "tsx scripts/ValidateI18nKeys.ts",
"i18n:validate:ci": "tsx scripts/ValidateI18nKeys.ts --ci",
"i18n:validate:verbose": "tsx scripts/ValidateI18nKeys.ts --verbose",
"i18n:validate:fix": "tsx scripts/ValidateI18nKeys.ts --fix",
"i18n:gen": "i18next-resources-for-ts interface -i ./locales/en-GB -o ./src/types/resources.d.ts",
"i18n:watch": "pnpm i18n:gen --watch",
"i18n:scan": "tsx scripts/ScanUnusedTranslations.ts",
"i18n:sort": "tsx scripts/SortTranslations.ts",
"i18n:check": "pnpm run i18n:validate:ci && pnpm run i18n:scan -- --ci && pnpm run i18n:sort -- --check --ci",
"i18n:fix": "pnpm run i18n:scan -- --fix && pnpm run i18n:sort && pnpm run i18n:validate:fix && pnpm run i18n:gen"
},
"dependencies": {
"@fastify/cors": "^11.1.0",
"@fastify/helmet": "^13.0.2",
"@fastify/rate-limit": "^10.3.0",
"@repo/database": "workspace:*",
"chalk": "^5.6.2",
"cron": "^3.5.0",
"dayjs": "^1.11.18",
"discord.js": "^14.23.2",
"dotenv": "^16.6.1",
"fastify": "^5.6.1",
"i18next": "^25.5.3",
"i18next-fs-backend": "^2.6.0",
"js-yaml": "4.1.1",
"lodash": "^4.17.21",
"string-progressbar": "^1.0.4",
"toml": "^3.0.0",
"winston": "^3.18.3",
"winston-transport": "^4.9.0"
},
"devDependencies": {
"@eslint/js": "^8.57.1",
"@types/lodash": "^4.17.20",
"@typescript-eslint/eslint-plugin": "^8.46.0",
"@typescript-eslint/parser": "^8.46.0",
"dotenv-cli": "^11.0.0",
"eslint": "^8.57.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-jsonc": "^2.21.0",
"globals": "^15.15.0",
"i18next-resources-for-ts": "^2.0.0",
"nodemon": "^3.1.11",
"prettier": "^3.6.2",
"ts-node": "^10.9.2",
"tsc-alias": "^1.8.16",
"tsx": "^4.19.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.46.0"
},
"private": true
}