-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.15 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.15 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
{
"name": "cripto-b-alert",
"version": "1.0.0",
"description": "telegram bot to get information of binance",
"main": "server.js",
"scripts": {
"start": "nodemon src/server.ts",
"serve": "tsc -w & pm2 start dist/server.js --watch --name 'cripto-b-alert'",
"serve-stop": "pm2 stop cripto-b-alert & pm2 delete cripto-b-alert",
"serve-restart": "npm run serve-stop & npm run serve",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ramyx/cripto-b-alert.git"
},
"keywords": [
"telegram",
"bot",
"binance"
],
"author": "ramyx",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/ramyx/cripto-b-alert/issues"
},
"homepage": "https://github.com/ramyx/cripto-b-alert#readme",
"dependencies": {
"binance-api-node": "^0.12.9",
"dotenv": "^16.5.0",
"node-telegram-bot-api": "^0.66.0",
"nodemon": "^3.1.10",
"pm2": "^6.0.8"
},
"devDependencies": {
"@types/express": "^5.0.3",
"@types/node-telegram-bot-api": "^0.64.9",
"ts-node": "^10.9.2",
"tslint": "^6.1.3",
"typescript": "^5.8.3"
}
}