-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 2.09 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "nestjs-telegram-unlimit-message",
"version": "1.3.1",
"description": "Send message to Telegram unlimited with load balancing strategies",
"author": {
"email": "[email protected]",
"name": "truongbo"
},
"repository": {
"type": "git",
"url": "https://github.com/truongbo17/nestjs-telegram-unlimit-message.git"
},
"license": "MIT",
"types": "./dist/index.d.ts",
"main": "./dist/index.js",
"keywords": [
"nest",
"nestjs",
"telegram",
"bot",
"send message telegram no limit",
"mutiple bot send message"
],
"scripts": {
"build": "rimraf dist && tsc -p tsconfig.build.json",
"start": "node dist/main.js",
"start:dev": "tsc-watch --onSuccess \"node -r tsconfig-paths/register dist/index.js\"",
"start:debug": "tsc-watch --onSuccess \"node --inspect-brk -r tsconfig-paths/register dist/index.js\"",
"lint": "tslint -p tsconfig.json -c tslint.json",
"format": "prettier --write \"src/**/*.ts\"",
"format:check": "prettier --check \"src/**/*.ts\""
},
"dependencies": {
"@nestjs/axios": "^3.1.3",
"@nestjs/common": "^10.4.15",
"@nestjs/config": "^3.3.0",
"@nestjs/core": "^10.4.15",
"axios": "^1.7.9",
"moment": "^2.30.1",
"node-cache": "^5.1.2",
"reflect-metadata": "^0.2.2",
"rxjs": "^7.8.1"
},
"devDependencies": {
"@commitlint/cli": "^19.6.1",
"@commitlint/config-conventional": "^19.6.0",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"eslint": "^8.0.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"husky": "^9.1.7",
"prettier": "^3.4.2",
"rimraf": "^6.0.1",
"tsc-watch": "^6.2.1",
"tsconfig-paths": "^4.2.0",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typescript": "^5.7.2"
},
"lint-staged": {
"**/*.ts": [
"prettier --write '{src,test}/**/*.{ts,json,yml,yaml}'",
"eslint",
"stop-only --file"
],
"*.{json,yaml}": [
"prettier --write"
]
},
"engines": {
"node": ">=20.0.0",
"npm": ">=10.0.0"
}
}