-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.05 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.05 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
{
"name": "translate_bot",
"version": "2.0.0",
"description": "Simple translate bot for Telegram. It available via http://tele.click/justtranslate_bot",
"repository": {
"type": "git",
"url": "https://github.com/baitun/node-telegram-translate-bot.git"
},
"main": "lib/index.js",
"scripts": {
"start": "yarn build:live",
"build": "tsc -p .",
"build:live": "nodemon --watch src/**/*.ts --exec ts-node src/index.ts",
"production": "node lib/index.js",
"deploy": "git push && pm2 deploy production update",
"snyk-protect": "snyk protect",
"prepare": "yarn run snyk-protect"
},
"author": "Yury Savin <https://github.com/baitun>",
"license": "MIT",
"dependencies": {
"dotenv": "^8.0.0",
"node-telegram-bot-api": "^0.30.0",
"yandex-translate": "^2.1.2",
"snyk": "^1.316.1"
},
"devDependencies": {
"@types/node": "10.14.8",
"@types/node-telegram-bot-api": "0.31.0",
"nodemon": "1.19.1",
"socks5-https-client": "1.2.1",
"ts-node": "8.2.0",
"typescript": "3.4.4"
},
"snyk": true
}