-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.32 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.32 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
{
"name": "postify",
"version": "1.7.0",
"description": "Telegram channel management bot built with TypeScript, grammy, MongoDB & Agenda to manage your channel contents effortlessly!",
"private": true,
"type": "module",
"engines": {
"node": ">=21"
},
"scripts": {
"start": "node dist/src/index.js",
"dev": "tsx watch src/index.ts",
"clean": "rimraf dist",
"build": "npm run clean && tsc -p tsconfig.json && node post-build.mjs",
"lint": "eslint . --ext .ts",
"format": "prettier --write .",
"test": "vitest run",
"migrate:encrypt-tokens": "tsx scripts/migrateEncryptUserBotTokens.ts"
},
"dependencies": {
"@grammyjs/menu": "^1.2.1",
"@grammyjs/runner": "^1.0.4",
"agenda": "^5.0.0",
"cron-parser": "^5.0.3",
"csv-stringify": "^6.5.0",
"dotenv": "^16.4.5",
"grammy": "^1.24.0",
"luxon": "^3.5.0",
"mongodb": "^6.8.0",
"mongoose": "^8.5.3",
"pino": "^9.2.0",
"pino-pretty": "^11.2.2",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/luxon": "^3.7.1",
"@types/node": "^20.14.10",
"@typescript-eslint/eslint-plugin": "^8.0.1",
"@typescript-eslint/parser": "^8.0.1",
"eslint": "^9.9.0",
"prettier": "^3.3.2",
"rimraf": "^5.0.5",
"tsx": "^4.15.7",
"typescript": "^5.6.2",
"vitest": "^3.2.4"
}
}