This repository was archived by the owner on Apr 7, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.64 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.64 KB
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
61
62
63
64
{
"name": "streamix",
"version": "1.2.0",
"description": "streamix bot",
"main": "index.js",
"scripts": {
"build": "rimraf dist && tsc",
"start": "node dist/bot.js",
"lint": "tsc --noEmit && eslint './src/**/*.{js,ts,tsx}' --quiet --fix"
},
"keywords": [
"bot",
"telegram"
],
"engines": {
"node": ">=12"
},
"author": "Boris Ryabov",
"license": "MIT",
"dependencies": {
"axios": "^0.19.2",
"date-fns": "^2.14.0",
"dotenv-safe": "^8.2.0",
"get-urls": "^9.2.0",
"iconv-lite": "^0.5.1",
"interval-promise": "^1.4.0",
"lodash": "^4.17.15",
"p-limit": "^2.3.0",
"pg": "^8.2.1",
"pg-native": "^3.0.0",
"pickup": "^8.1.0",
"pretty-quick": "^2.0.1",
"reflect-metadata": "^0.1.13",
"telegraf": "^3.38.0",
"telegraf-i18n": "^6.6.0",
"telegraf-inline-menu": "^5.0.0-beta.5",
"telegraf-stateless-question": "^0.1.1",
"typeorm": "^0.2.25",
"winston": "^3.2.1"
},
"devDependencies": {
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"@types/dotenv-safe": "^8.1.0",
"@types/node": "^12.12.44",
"@types/request": "^2.48.5",
"@typescript-eslint/eslint-plugin": "^3.1.0",
"@typescript-eslint/parser": "^3.1.0",
"eslint": "^7.1.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.3",
"https-proxy-agent": "^5.0.0",
"husky": "^4.2.5",
"prettier": "^2.0.5",
"rimraf": "^3.0.2",
"typescript": "^3.9.5"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged && npm run lint",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}