-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.18 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
{
"name": "pubmed-extractor-bot",
"version": "1.0.0",
"description": "Telegram bot for PubMed information extraction",
"main": "dist/app.js",
"repository": "https://github.com/Moldoteck/PubMedExtractorBot",
"author": "Moldoteck <moldotecko@gmail.com>",
"license": "MIT",
"private": false,
"scripts": {
"distribute": "yarn build-ts && node dist/app.js",
"develop": "concurrently -k -i -p \"[{name}]\" -n \"Node,TypeScript\" -c \"yellow.bold,cyan.bold\" \"yarn watch-js\" \"yarn watch-ts\"",
"build-ts": "tsc --skipLibCheck",
"watch-ts": "tsc -w --skipLibCheck",
"watch-js": "nodemon dist/app.js"
},
"devDependencies": {
"concurrently": "^5.2.0",
"nodemon": "^2.0.4"
},
"dependencies": {
"@typegoose/typegoose": "^7.3.0",
"@types/dotenv": "^8.2.0",
"@types/mongoose": "^5.7.32",
"@types/node": "^14.0.23",
"@google-cloud/translate": "^6.1.0",
"dotenv": "^8.2.0",
"mongoose": "^5.9.25",
"telegraf": "^3.38.0",
"telegraf-i18n": "^6.6.0",
"typescript": "^4.0.3",
"needle": "2.6.0",
"cheerio": "^1.0.0-rc.5",
"telegraph-node": "1.0.4",
"smmry": "^1.0.2",
"xpath":"^0.0.32",
"xmldom":"^0.6.0"
}
}