-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 1 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
{
"name": "ibkr-signal",
"version": "1.0.0",
"description": "IBKR signal emitter",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"connect": "ts-node connect.ts",
"build": "tsc",
"start-server": "node --experimental-modules dist/index.js",
"clear-collections": "ts-node runs/clear-collections.ts",
"test-connection": "ts-node runs/connection-lost.ts",
"stat": "ts-node runs/stat.ts",
"mt5": "ts-node handlers/mt5/handler.ts",
"mt5:test": "ts-node handlers/mt5/test.ts",
"lint": "eslint . --ext .ts --fix"
},
"author": "Ildar Davletyarov",
"license": "ISC",
"devDependencies": {
"@types/node": "^16.11.6",
"@typescript-eslint/eslint-plugin": "^5.9.0",
"@typescript-eslint/parser": "^5.9.0",
"eslint": "^8.6.0",
"nodemon": "^2.0.14",
"ts-node": "^10.4.0",
"typescript": "^4.4.4"
},
"dependencies": {
"@stoqey/ib": "^1.2.14",
"ib-tws-api": "^1.3.0",
"metaapi.cloud-sdk": "^18.3.9",
"mongodb": "^4.1.3"
}
}