🔧 refactor(bot-commands): Убран лишний код, оптимизированы импорты и функции.

This commit is contained in:
Oscar
2026-05-26 17:46:51 +03:00
parent 6bd70a2e75
commit d2a49cb1eb
9 changed files with 180 additions and 210 deletions

View File

@@ -3,9 +3,9 @@
"packageManager": "yarn@4.6.0",
"type": "module",
"scripts": {
"dev": "tsx watch src/index.ts",
"dev": "tsx watch --env-file=.env src/index.ts",
"build": "tsc",
"start": "node dist/index.js",
"start": "node --env-file=.env dist/index.js",
"db-view": "yarn prisma studio",
"db-migrate": "npx prisma migrate dev --name init npx prisma generate ",
"db-deploy": "npx prisma migrate deploy",