zapishis-client/apps/bot/package.json
2024-12-22 17:24:32 +03:00

35 lines
926 B
JSON

{
"name": "bot",
"version": "0.0.0",
"type": "module",
"main": "index.js",
"license": "MIT",
"dependencies": {
"@apollo/client": "^3.12.3",
"jsonwebtoken": "^9.0.2",
"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": "dotenv -e ../../.env.local tsx watch src/index.ts",
"lint": "eslint",
"lint-staged": "lint-staged"
},
"devDependencies": {
"@repo/eslint-config": "workspace:*",
"@repo/graphql": "workspace:*",
"@repo/lint-staged-config": "workspace:*",
"@repo/typescript-config": "workspace:*",
"@types/jsonwebtoken": "^9.0.7",
"@types/node": "catalog:",
"dotenv-cli": "catalog:",
"lint-staged": "catalog:",
"rimraf": "catalog:",
"tsx": "catalog:",
"typescript": "catalog:"
}
}