-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
82 lines (82 loc) · 2.32 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
76
77
78
79
80
81
82
{
"name": "jd-post-bot",
"version": "0.1.0",
"description": "The final bot to cross post your job offer in different telegram communities",
"type": "module",
"imports": {
"#root/*": "./build/src/*"
},
"scripts": {
"lint": "eslint .",
"format": "eslint . --fix",
"typecheck": "tsc",
"build": "tsc --noEmit false",
"dev": "tsc-watch --onSuccess \"tsx ./scripts/start.ts\"",
"start": "tsc && tsx ./scripts/start.ts",
"start:force": "tsx ./scripts/start.ts"
},
"author": "elgorditosalsero <[email protected]>",
"license": "MIT",
"private": true,
"homepage": "https://github.com/elgorditosalsero/job-offer-bot",
"bugs": {
"url": "https://github.com/elgorditosalsero/job-offer-bot/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/elgorditosalsero/job-offer-bot"
},
"readme": "README.md",
"packageManager": "ˆ[email protected]",
"keywords": [
"Telegram",
"Bot",
"Job Offer"
],
"dependencies": {
"@grammyjs/auto-chat-action": "0.1.1",
"@grammyjs/conversations": "^1.1.2",
"@grammyjs/hydrate": "1.3.1",
"@grammyjs/i18n": "1.0.1",
"@grammyjs/parse-mode": "1.8.1",
"@grammyjs/storage-mongodb": "^2.4.0",
"@grammyjs/types": "3.3.0",
"callback-data": "1.1.1",
"dotenv": "16.3.1",
"fastify": "4.24.3",
"grammy": "1.19.2",
"grammy-guard": "^0.5.0",
"iso-639-1": "3.1.0",
"mongodb": "^6.3.0",
"node-graceful-shutdown": "1.1.5",
"pino": "8.16.2",
"pino-pretty": "10.2.3",
"tsx": "3.14.0",
"zod": "3.22.4"
},
"devDependencies": {
"@commitlint/cli": "^18.4.2",
"@commitlint/config-conventional": "^18.4.2",
"@types/node": "20.9.1",
"@typescript-eslint/eslint-plugin": "6.11.0",
"@typescript-eslint/parser": "6.11.0",
"all-contributors-cli": "^6.26.1",
"eslint": "8.54.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-config-prettier": "9.0.0",
"eslint-import-resolver-typescript": "3.6.1",
"eslint-plugin-import": "2.29.0",
"eslint-plugin-prettier": "5.0.1",
"eslint-plugin-unicorn": "49.0.0",
"lefthook": "^1.5.2",
"lint-staged": "15.1.0",
"prettier": "3.1.0",
"prettier-plugin-organize-imports": "3.2.4",
"tsc-watch": "6.0.4",
"typescript": "5.2.2"
},
"engines": {
"node": ">=18.0.0",
"npm": ">=8.0.0"
}
}