-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.11 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
{
"name": "toxmod-bot",
"version": "1.0.0",
"description": "Telegram bot which detects toxic comments based on Perspective API",
"main": "dist/app.js",
"repository": "https://github.com/Moldoteck/ToxMod",
"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",
"googleapis":"^70.0.0",
"needle": "2.6.0"
},
"_moduleAliases": {
"@": "dist"
}
}