-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
42 lines (42 loc) · 1.23 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
{
"name": "telegraf-template",
"version": "1.0.0",
"description": "Telegram bot template based on telegraf.js.org",
"main": "dist/app.js",
"repository": "https://github.com/Moldoteck/telegraf-template",
"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": {
"@types/mongoose": "^5.10.4",
"@types/node": "^14.14.35",
"@types/needle": "^2.5.1",
"concurrently": "^6.0.0",
"nodemon": "^2.0.7"
},
"dependencies": {
"@typegoose/typegoose": "^7.6.0",
"dotenv": "^8.2.0",
"module-alias": "^2.2.2",
"mongoose": "5.10.18",
"telegraf": "^4.3.0",
"telegraf-i18n": "^6.6.0",
"typescript": "^4.2.3",
"needle": "^2.5.1",
"puppeteer": "5.4.1",
"telegraph-node": "^1.0.4",
"cheerio": "^1.0.0-rc.6",
"@mozilla/readability":"^0.4.2",
"jsdom":"^16.5.3"
},
"_moduleAliases": {
"@": "dist"
}
}