zapishis-client/apps/bot/package.json
2024-12-17 15:18:42 +03:00

29 lines
702 B
JSON

{
"name": "bot",
"version": "0.0.0",
"type": "module",
"main": "index.js",
"license": "MIT",
"dependencies": {
"telegraf": "catalog:",
"zod": "catalog:"
},
"scripts": {
"build": "rimraf ./build & tsc -p tsconfig.json",
"build:watch": "tsc -w -p tsconfig.json",
"start": "node dist/src/index.js",
"dev": "tsx watch src/index.ts",
"lint": "eslint",
"lint-staged": "lint-staged"
},
"devDependencies": {
"@repo/eslint-config": "workspace:*",
"@repo/lint-staged-config": "workspace:*",
"@repo/typescript-config": "workspace:*",
"lint-staged": "catalog:",
"rimraf": "catalog:",
"tsx": "catalog:",
"typescript": "catalog:"
}
}