-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
51 lines (51 loc) · 1.46 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
{
"name": "trading-bot",
"version": "1.0.0",
"description": "An open source, low-code way to test technical indicators with real-time market trading data",
"main": "index.js",
"scripts": {
"test": "./node_modules/.bin/nyc ./node_modules/.bin/mocha --recursive",
"dev": "nodemon --max-old-space-size=4096 index.js",
"start": "node --max-old-space-size=4096 index.js",
"console": "node --max-old-space-size=4096 console-only.js"
},
"author": "Mike Wright",
"license": "Apache",
"engines": {
"node": "12.x"
},
"devDependencies": {
"chai": "^4.3.4",
"mocha": "^8.3.2",
"nodemon": "^1.18.9",
"nyc": "^15.1.0",
"proxyquire": "^2.1.3",
"sinon": "^10.0.0"
},
"dependencies": {
"@alpacahq/alpaca-trade-api": "2.15.0",
"@michaeljwright/alpaca-js-backtesting": "^2.0.3",
"async": "^3.2.0",
"axios": "^0.21.1",
"body-parser": "^1.19.0",
"cross-fetch": "^3.1.5",
"dirty-json": "^0.9.2",
"dotenv": "^8.2.0",
"ejs": "^2.7.4",
"express": "^4.17.1",
"express-formidable": "^1.2.0",
"express-session": "^1.17.1",
"express-socket.io-session": "^1.3.5",
"extract-numbers": "^1.0.8",
"lodash": "^4.17.21",
"moment-timezone": "^0.5.33",
"mongoose": "^5.11.12",
"path": "^0.12.7",
"socket.io": "^3.1.0",
"socket.io-client": "^3.1.0",
"technicalindicators": "^3.1.0",
"uuid-by-string": "^3.0.2",
"winston": "^3.3.3",
"winston-loggly-bulk": "^3.2.1"
}
}