-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.78 KB
/
Copy pathpackage.json
File metadata and controls
62 lines (62 loc) · 1.78 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "hr-bot",
"version": "0.5.0",
"private": true,
"description": "Telegram-бот для автоматического первичного скрининга кандидатов с отчётом в Google Sheets.",
"type": "module",
"engines": {
"node": ">=20"
},
"scripts": {
"dev": "tsx watch src/bot.ts",
"build": "tsc -p tsconfig.json",
"start": "node dist/src/bot.js",
"typecheck": "tsc -p tsconfig.json --noEmit",
"lint": "eslint \"src/**/*.ts\" \"tests/**/*.ts\"",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"migrate": "tsx scripts/migrate.ts",
"seed": "tsx scripts/seed.ts",
"format": "prettier --write \"src/**/*.ts\" \"tests/**/*.ts\" \"scripts/**/*.ts\"",
"format:check": "prettier --check \"src/**/*.ts\" \"tests/**/*.ts\" \"scripts/**/*.ts\"",
"share": "tsx scripts/share.ts",
"prepare": "husky || true"
},
"lint-staged": {
"*.ts": [
"prettier --write",
"eslint --fix"
],
"*.{json,md,yml,yaml}": [
"prettier --write"
]
},
"dependencies": {
"dotenv": "^17.4.2",
"googleapis": "^171.4.0",
"groq-sdk": "^1.2.1",
"nodemailer": "^8.0.10",
"pdfkit": "^0.18.0",
"pg": "^8.21.0",
"redis": "^5.12.1",
"telegraf": "^4.16.3",
"zod": "^4.4.3"
},
"devDependencies": {
"@types/node": "^25.9.1",
"@types/nodemailer": "^8.0.0",
"@types/pdfkit": "^0.17.6",
"@types/pg": "^8.11.10",
"@typescript-eslint/eslint-plugin": "^8.60.1",
"@typescript-eslint/parser": "^8.14.0",
"@vitest/coverage-v8": "^4.1.8",
"eslint": "^10.4.1",
"husky": "^9.1.7",
"lint-staged": "^17.0.7",
"prettier": "^3.8.3",
"tsx": "^4.22.4",
"typescript": "^6.0.3",
"vitest": "^4.1.6"
}
}