-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
70 lines (70 loc) · 1.88 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
61
62
63
64
65
66
67
68
69
70
{
"name": "tradingbot",
"description": "Trading Bot CLI",
"version": "0.0.0",
"main": "dist/index.js",
"scripts": {
"start": "node dist/app.js",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "gts lint",
"clean": "gts clean",
"compile": "tsc && cp -R ./views ./dist/ && cp -R ./public ./dist",
"fix": "gts fix",
"prepare": "npm run compile",
"pretest": "npm run compile",
"posttest": "npm run lint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kevindra/tradingbot.git"
},
"keywords": [
"Trading",
"Bot",
"TradingBot"
],
"author": "Kevindra Singh",
"license": "ISC",
"bugs": {
"url": "https://github.com/kevindra/tradingbot/issues"
},
"homepage": "https://github.com/kevindra/tradingbot#readme",
"devDependencies": {
"@types/double-ended-queue": "^2.1.1",
"@types/express": "^4.17.11",
"@types/express-session": "^1.17.3",
"@types/lodash": "^4.14.168",
"@types/markdown-it": "^12.0.1",
"@types/moment": "^2.13.0",
"@types/mustache": "^4.1.1",
"@types/node": "^14.11.2",
"@types/node-fetch": "^2.5.8",
"@types/request": "^2.48.5",
"@types/ws": "^7.4.0",
"gts": "^3.1.0",
"tslint": "^5.11.0",
"typescript": "^4.0.3"
},
"dependencies": {
"@master-chief/alpaca": "^5.1.5-beta",
"bottleneck": "^2.19.5",
"chalk": "^2.4.2",
"cron-picker": "^1.0.2",
"dotenv": "^8.2.0",
"double-ended-queue": "^2.1.0-0",
"express": "^4.17.1",
"express-ipfilter": "^1.1.2",
"express-session": "^1.17.1",
"markdown-it": "^12.0.4",
"moment": "^2.29.1",
"moment-timezone": "^0.5.33",
"mustache": "^4.1.0",
"node-cache": "^5.1.2",
"node-fetch": "^2.6.1",
"pug": "^3.0.2",
"query-string": "^6.14.1",
"request": "^2.88.2",
"tslint-config-airbnb": "^5.11.2",
"yahoo-finance": "^0.3.7"
}
}