-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.23 KB
/
package.json
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
{
"name": "telegram-bot",
"version": "1.0.0",
"main": "index.ts",
"type": "module",
"scripts": {
"dev": "tsc-watch --onSuccess 'npm run start'",
"build": "rm -rf build && tsc",
"start": "dotenvx run -- node build/index.js",
"lint": "eslint --fix .",
"prettier": "prettier --write .",
"prepare": "husky"
},
"license": "ISC",
"lint-staged": {
"*": [
"eslint --fix --no-warn-ignored",
"prettier --write --ignore-unknown"
]
},
"dependencies": {
"@dotenvx/dotenvx": "^1.24.4",
"@logtail/pino": "^0.5.2",
"@tsconfig/node-lts": "^22.0.0",
"@tsconfig/strictest": "^2.0.5",
"mongoose": "^8.8.3",
"pino": "^9.5.0",
"pino-pretty": "^13.0.0",
"telegraf": "^4.16.3",
"typescript": "^5.6.3"
},
"devDependencies": {
"@eslint/js": "^9.15.0",
"@types/node": "^22.9.1",
"eslint": "^9.15.0",
"globals": "^15.12.0",
"husky": "^9.1.7",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"prettier-plugin-organize-imports": "^4.1.0",
"tsc-watch": "^6.2.1",
"typescript-eslint": "^8.15.0"
}
}