-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 1.99 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
71
72
{
"name": "@stoqey/aurum-broker-mille",
"version": "1.0.6",
"private": false,
"main": "build/index.js",
"types": "build/index.d.ts",
"files": [
"build/"
],
"scripts": {
"dev": "nodemon src/dev.ts",
"start": "node build/index.js",
"build": "rm -rf build && tsc",
"test": "NODE_ENV=test mocha src/*test.ts --exit",
"market": "NODE_ENV=test mocha src/market.test.ts --exit",
"trade": "NODE_ENV=test mocha src/trade.test.ts --exit",
"redis": "NODE_ENV=test mocha src/redis/*test.ts --exit",
"eslint": "eslint src --fix --ext=ts --ignore-pattern=*.test.ts",
"local": "yarn build && yarn link",
"prepare": "yarn build",
"prepublishOnly": "yarn test"
},
"lint-staged": {
"./src/**/*.ts": [
"yarn eslint"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"dependencies": {
"@stoqey/aurum-broker-spec": "^0.0.8",
"@stoqey/finnhub": "^0.0.7",
"@stoqey/mille": "^0.0.8",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"ioredis": "^4.17.3",
"node-redis-pubsub": "^4.0.0",
"redis-messaging-manager": "^1.6.2"
},
"devDependencies": {
"@stoqey/aurum-broker-ibkr": "^1.1.1",
"@stoqey/ibkr": "^1.6.2",
"@types/chai": "^4.2.11",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.6",
"@types/ioredis": "^4.16.0",
"@types/lodash": "^4.14.149",
"@types/mocha": "^7.0.2",
"@types/node": "^12.0.8",
"@types/redis": "^2.8.22",
"@typescript-eslint/eslint-plugin": "^2.30.0",
"@typescript-eslint/parser": "^2.30.0",
"chai": "^4.2.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.11.0",
"eslint-loader": "^4.0.2",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-typescript": "^0.14.0",
"husky": "^4.2.5",
"lint-staged": "^10.1.7",
"mocha": "^7.1.1",
"nodemon": "^1.19.1",
"prettier": "^2.0.5",
"ts-node": "^8.8.1",
"typescript": "^3.5.2"
},
"author": "Stoqey Inc <support@stoqey.com>",
"license": "MIT"
}