zapishis-client/apps/bot/package.json
2024-12-23 18:34:01 +03:00

38 lines
1023 B
JSON

{
"name": "bot",
"version": "0.0.0",
"type": "module",
"main": "index.js",
"license": "MIT",
"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",
"test:unit": "vitest"
},
"dependencies": {
"@apollo/client": "catalog:",
"jsonwebtoken": "catalog:",
"telegraf": "catalog:",
"zod": "catalog:"
},
"devDependencies": {
"@repo/eslint-config": "workspace:*",
"@repo/graphql": "workspace:*",
"@repo/lint-staged-config": "workspace:*",
"@repo/typescript-config": "workspace:*",
"@types/jsonwebtoken": "catalog:",
"@types/node": "catalog:",
"dotenv-cli": "catalog:",
"lint-staged": "catalog:",
"rimraf": "catalog:",
"tsx": "catalog:",
"typescript": "catalog:",
"vite-tsconfig-paths": "catalog:",
"vitest": "catalog:"
}
}