-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
60 lines (60 loc) · 1.76 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
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "telegram-lang-enforcer",
"repository": {
"type": "git",
"url": "https://github.com/bartekpacia/telegram-lang-enforcer"
},
"engines": {
"node": ">=12.0.0"
},
"version": "1.0.0",
"description": "Simple multi-platform bot enforcing a specific language in groups.",
"author": "Bartek Pacia",
"license": "MIT",
"keywords": [
"telegram",
"bot"
],
"scripts": {
"lint": "./node_modules/.bin/eslint --ext js,ts src",
"build": "tsc",
"gcp-build": "npm run build",
"start": "node lib/app.js --telegram --discord",
"telegram": "node lib/app.js --telegram",
"telegram_dev": "node lib/app.js --telegram --dev",
"discord": "node lib/app.js --discord",
"test": "mocha -r ts-node/register tests/**/*.test.ts"
},
"dependencies": {
"discord.js": "^12.5.3",
"dotenv": "^10.0.0",
"firebase-admin": "^9.10.0",
"node-telegram-bot-api": "^0.53.0",
"request": "^2.88.2",
"request-promise-native": "^1.0.9",
"string-similarity": "^4.0.4",
"translation-google": "^0.2.1"
},
"devDependencies": {
"@types/chai": "^4.2.19",
"@types/core-js": "^2.5.4",
"@types/mocha": "^8.2.2",
"@types/node": "^15.12.5",
"@types/node-telegram-bot-api": "^0.51.1",
"@types/request": "^2.48.5",
"@types/request-promise-native": "^1.0.17",
"@typescript-eslint/eslint-plugin": "^4.28.0",
"@typescript-eslint/parser": "^4.28.0",
"chai": "^4.3.4",
"eslint": "^7.29.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-promise": "^5.1.0",
"mocha": "^9.0.1",
"prettier": "^2.3.2",
"ts-node": "^10.0.0",
"typescript": "^4.3.4"
}
}