-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
58 lines (58 loc) · 1.39 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
{
"name": "@stoqey/aurum-broker-ibkr",
"version": "1.1.9",
"private": false,
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/",
"register/",
"LICENSE"
],
"scripts": {
"dev": "nodemon src/index.ts",
"start": "node build/index.js",
"build": "rm -rf build && tsc",
"test": "NODE_ENV=test mocha src/*test.ts --exit",
"eslint": "eslint src --fix --ext=ts",
"prepublishOnly": "npm run build"
},
"lint-staged": {
"./src/**/*.ts": [
"yarn eslint"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"dependencies": {
"@stoqey/aurum-broker-spec": "^0.0.7",
"@stoqey/ibkr": "^1.6.3",
"@stoqey/mille": "^0.0.4",
"dotenv": "^8.2.0"
},
"devDependencies": {
"@types/chai": "^4.2.11",
"@types/dotenv": "^8.2.0",
"@types/lodash": "^4.14.149",
"@types/mocha": "^7.0.2",
"@types/node": "^12.0.8",
"@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-typescript": "^0.14.0",
"husky": "^4.2.5",
"lint-staged": "^10.1.7",
"mocha": "^7.1.1",
"nodemon": "^1.19.1",
"ts-node": "^8.8.1",
"typescript": "^3.5.2"
},
"author": "Stoqey Inc <[email protected]>",
"license": "MIT"
}