-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
60 lines (60 loc) · 1.48 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": "DuckBot",
"version": "2.1.0",
"description": "Powerfull telegram bot",
"main": "index.ts",
"scripts": {
"dev": "nodemon src/index.ts",
"build": "tsc",
"start": "node ./build/index.js --unhandled-rejections=strict",
"prepare": "husky install"
},
"repository": "github:butthx/duckbot",
"author": "butthx",
"license": "MIT",
"dependencies": {
"@google-cloud/vision": "^2.3.3",
"@vitalets/google-translate-api": "^7.0.0",
"axios": "^0.21.1",
"cheerio": "^1.0.0-rc.6",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"google-gax": "^2.14.1",
"google-tts-api": "^2.0.2",
"husky": "^6.0.0",
"jimp": "^0.16.1",
"js-yaml": "^4.0.0",
"lint-staged": "^11.0.0",
"lipo": "^2.0.0",
"mongoose": "^5.12.13",
"node-cron": "^3.0.0",
"node-fetch": "^2.6.1",
"ocr-space-api-wrapper": "^1.0.5",
"spamwatch": "^0.4.0",
"telegraf": "^4.3.0",
"telegram": "^1.6.12",
"tesseract.js": "^2.1.4"
},
"devDependencies": {
"@types/mongoose": "^5.11.97",
"@types/node": "^15.12.1",
"@typescript-eslint/eslint-plugin": "^4.25.0",
"@typescript-eslint/parser": "^4.25.0",
"eslint": "^7.28.0",
"eslint-config-google": "^0.14.0",
"nodemon": "^2.0.7",
"prettier": "^2.3.1",
"ts-node": "^10.0.0",
"typescript": "^4.3.2"
},
"engines": {
"node": "<= 14.x",
"yarn": "<= 1.x"
},
"lint-staged": {
"*.{js,ts}": [
"prettier --write",
"eslint --fix"
]
}
}