-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
103 lines (103 loc) · 3.29 KB
/
package.json
File metadata and controls
103 lines (103 loc) · 3.29 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "goose-invest-alert",
"version": "1.0.0",
"description": "Telegram bot that delivers price-level and speed alerts for stocks and crypto across multiple exchanges.",
"engines": {
"node": ">=20"
},
"main": "dist/app.js",
"repository": {
"type": "git",
"url": "https://github.com/ashugaev/GooseInvestAlertBot"
},
"bugs": "https://github.com/ashugaev/GooseInvestAlertBot/issues",
"homepage": "https://github.com/ashugaev/GooseInvestAlertBot#readme",
"keywords": [
"telegram",
"telegram-bot",
"trading",
"crypto",
"stocks",
"price-alerts",
"binance",
"bybit",
"kucoin",
"tinkoff"
],
"author": "Aleksey Shugaev",
"license": "MIT",
"private": false,
"scripts": {
"test": "jest",
"lint": "npm run pretty && eslint --max-warnings 0 --ext ts,tsx,json src",
"pretty": "prettier --check src",
"lint:fix": "npm run pretty -- --write && eslint --max-warnings 0 --ext ts,tsx,json src --fix",
"build": "npm run build:ts",
"start": "mkdir -p logs && node dist/app.js",
"dev:watch": "concurrently -k -i -p \"[{name}]\" -n \"Node,TypeScript\" -c \"yellow.bold,cyan.bold\" \"npm run watch:js\" \"npm run watch:ts\"",
"dev:static": "rimraf ./dist && npm run build:ts && node dist/app.js",
"build:ts": "rimraf ./dist && tsc --skipLibCheck",
"watch:ts": "rimraf ./dist && tsc -w --skipLibCheck",
"watch:js": "nodemon dist/app.js",
"docker:up": "npm run build && docker-compose up -d --build --force-recreate",
"docker:down": "docker-compose down",
"db-migration:up": "cd migrations && migrate-mongo up",
"db-migration:down": "cd migrations && migrate-mongo down",
"secret-scan": "gitleaks protect --staged --no-banner --redact || (echo '\\nGitleaks blocked the commit. Resolve the finding above or, if it is a false positive, add it to .gitleaks.toml allowlist.\\n' && exit 1)"
},
"_moduleAliases": {
"@": "dist/"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged && npm run secret-scan"
}
},
"lint-staged": {
"*.{js,ts,tsx}": [
"eslint --fix"
]
},
"devDependencies": {
"@types/jest": "29.5.5",
"@typescript-eslint/eslint-plugin": "5.59.0",
"@typescript-eslint/parser": "5.59.0",
"concurrently": "5.2.0",
"eslint": "8.38.0",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-no-relative-import-paths": "1.5.2",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-prettier": "4.2.1",
"jest": "29.7.0",
"nodemon": "2.0.4",
"ts-jest": "29.1.1",
"typescript": "4.9.3"
},
"dependencies": {
"@typegoose/typegoose": "7.3.0",
"@types/node": "18.15.11",
"axios": "0.27.2",
"binance-api-node": "0.12.6",
"bybit-api": "3.10.11",
"cron": "1.8.2",
"date-fns": "2.30.0",
"dotenv": "8.2.0",
"eslint-config-prettier": "8.8.0",
"eslint-plugin-simple-import-sort": "10.0.0",
"eslint-plugin-unused-imports": "2.0.0",
"husky": "4.3.6",
"kucoin-node-sdk": "1.0.4",
"lint-staged": "10.5.3",
"lodash": "4.17.21",
"log4js": "6.3.0",
"migrate-mongo": "8.2.2",
"module-alias": "2.2.2",
"mongoose": "5.13.15",
"node-cache": "5.1.2",
"plural-ru": "2.0.2",
"prettier": "2.8.8",
"telegraf": "3.38.0",
"telegraf-i18n": "6.6.0",
"tinkoff-invest-api": "5.0.0"
}
}