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

29 lines
697 B
JSON

{
"name": "bot",
"version": "0.0.0",
"type": "module",
"main": "index.js",
"license": "MIT",
"dependencies": {
"telegraf": "^4.16.3",
"zod": "^3.24.1"
},
"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": "^6.0.1",
"tsx": "^4.19.2",
"typescript": "catalog:"
}
}