-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 906 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 906 Bytes
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
{
"name": "pillsale-monitor-bot",
"version": "1.0.0",
"type": "module",
"description": "Telegram bot that monitors pillsale.fun and notifies subscribers when it goes live",
"scripts": {
"dev": "bun run --watch src/index.ts",
"start": "bun run src/index.ts",
"build": "bun build src/index.ts --outdir=dist --target=bun",
"type-check": "tsc --noEmit",
"pm2:start": "pm2 start ecosystem.config.cjs",
"pm2:stop": "pm2 stop pillsale-bot",
"pm2:restart": "pm2 restart pillsale-bot",
"pm2:delete": "pm2 delete pillsale-bot",
"pm2:logs": "pm2 logs pillsale-bot",
"pm2:monit": "pm2 monit",
"pm2:status": "pm2 status"
},
"dependencies": {
"grammy": "^1.33.0",
"node-html-parser": "^6.1.13",
"pm2": "^5.3.0",
"zod": "^4.3.4"
},
"devDependencies": {
"@types/bun": "latest",
"typescript": "^5.0.0"
}
}