-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 913 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 913 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
30
31
32
33
{
"name": "untitled",
"version": "1.0.0",
"description": "",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"start": "node dist/monitor.js",
"dev": "ts-node src/monitor.ts",
"pm2:start": "pm2 start dist/monitor.js --name telegram-gifts",
"pm2:stop": "pm2 stop telegram-gifts",
"pm2:restart": "pm2 restart telegram-gifts",
"pm2:logs": "pm2 logs telegram-gifts"
},
"dependencies": {
"@types/node": "^24.0.12",
"dotenv": "^17.1.0",
"prettier": "^3.6.2",
"telegraf": "^4.16.3",
"teleproto": "^206.1.3"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^8.36.0",
"@typescript-eslint/parser": "^8.36.0",
"eslint": "^9.30.1",
"eslint-config-prettier": "^10.1.5",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-prettier": "^5.5.1",
"prettier": "^3.2.5",
"typescript": "^5.5.3"
},
"private": true
}