-
Notifications
You must be signed in to change notification settings - Fork 27
/
package.json
34 lines (34 loc) · 1.05 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
{
"name": "ton-connect-demo-bot",
"version": "1.0.0",
"scripts": {
"compile": "npx rimraf dist && tsc",
"run": "node ./dist/main.js",
"start:redis": "docker run -d -p 127.0.0.1:6379:6379 redis/redis-stack-server:latest",
"start:daemon": "pm2 start --name tgbot ./dist/main.js",
"stop:daemon": "pm2 stop tgbot && pm2 delete tgbot"
},
"dependencies": {
"@tonconnect/sdk": "^3.0.0-beta.1",
"dotenv": "^16.0.3",
"node-telegram-bot-api": "^0.61.0",
"qrcode": "^1.5.1",
"redis": "^4.6.5"
},
"devDependencies": {
"@types/node-telegram-bot-api": "^0.61.4",
"@types/qrcode": "^1.5.0",
"@typescript-eslint/eslint-plugin": "^5.38.1",
"@typescript-eslint/parser": "^5.38.1",
"eslint": "8.22.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-unused-imports": "^2.0.0",
"pm2": "^5.2.2",
"prettier": "^2.7.1",
"rimraf": "^3.0.2",
"typescript": "^4.9.5"
}
}