This repository has been archived by the owner on Apr 16, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 43
/
package.json
48 lines (48 loc) · 1.65 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
{
"name": "telegram-bot",
"version": "0.3.1",
"description": "With this bot you won't skip the moment when your favorite movies are available on the torrents!",
"author": "Dmitrii Baranov",
"scripts": {
"start": "npm run serve",
"build": "npm run build-ts && npm run tslint",
"serve": "NODE_ENV=production node dist/bot.js",
"watch-node": "nodemon dist/bot.js",
"watch": "concurrently -k -p \"[{name}]\" -n \"TypeScript,Node\" -c \"cyan.bold,green.bold\" \"npm run watch-ts\" \"npm run watch-node\"",
"build-ts": "tsc",
"watch-ts": "tsc -w",
"tslint": "tslint -c tslint.json -p tsconfig.json",
"debug": "npm run build && npm run watch-debug",
"serve-debug": "nodemon --inspect dist/bot.js",
"watch-debug": "concurrently -k -p \"[{name}]\" -n \"TypeScript,Node\" -c \"cyan.bold,green.bold\" \"npm run watch-ts\" \"npm run serve-debug\""
},
"dependencies": {
"cheerio": "^1.0.0-rc.2",
"cloudscraper": "^1.5.0",
"dotenv": "^6.1.0",
"imdb-api": "^4.0.2",
"lodash": "^4.17.11",
"mongoose": "^5.7.5",
"request": "^2.88.0",
"request-promise": "^4.2.2",
"string-similarity": "^3.0.0",
"telegraf": "^3.25.0",
"telegraf-i18n": "^6.4.0",
"winston": "^3.1.0"
},
"devDependencies": {
"@types/cheerio": "^0.22.10",
"@types/dotenv": "^6.1.0",
"@types/lodash": "^4.14.119",
"@types/mongoose": "^5.3.1",
"@types/node": "^10.12.7",
"@types/request-promise": "^4.1.42",
"@types/string-similarity": "^3.0.0",
"concurrently": "^4.0.1",
"nodemon": "^1.18.6",
"prettier": "^2.2.1",
"ts-node": "^7.0.1",
"tslint": "^5.11.0",
"typescript": "^3.1.6"
}
}