This repository has been archived by the owner on Jul 17, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 22
/
package.json
90 lines (90 loc) · 2.56 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "stockmlbot-tradercore",
"version": "4.0.0",
"description": "",
"main": "./build/src/index.js",
"scripts": {
"start": "node ./build/src/index.js",
"dev": "ts-node ./src/index.ts",
"debug": "tsc && node --experimental-worker --inspect=5858 -r ts-node/register ./src/index.ts",
"test": "jest",
"prebuild": "rimraf build",
"build": "tsc",
"format": "prettier --write \"src/**/*.ts\" \"src/**/*.js\"",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix",
"precommit": "eslint . --ext .ts --fix",
"prepublishOnly": "npm test && npm run lint",
"preversion": "npm run lint",
"version": "npm run format && git add -A src",
"postversion": "git push && git push --tags"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@koa/cors": "^2.2.3",
"@nestjs/common": "^7.0.6",
"@nestjs/core": "^7.0.6",
"@nestjs/platform-express": "^7.0.8",
"@types/koa__cors": "^3.0.1",
"axios": ">=0.19.0",
"bfx-hf-indicators": "^1.0.2",
"bigint-money": "^1.1.1",
"candlestick-convert": "^5.1.3",
"ccxt": "^1.18.995",
"co-body": "^6.0.0",
"dotenv": "^8.0.0",
"eventemitter3": "^4.0.0",
"ioredis": "^4.14.0",
"koa": "^2.7.0",
"koa-router": "^7.4.0",
"lodash": "^4.17.15",
"math": "0.0.3",
"mathjs": "^5.10.0",
"mysql2": "^1.6.5",
"reflect-metadata": "^0.1.13",
"rimraf": "^3.0.2",
"rxjs": "^6.5.4",
"sand-ex": "^0.1.8",
"synaptic": "^1.1.4",
"talib": "^1.1.3",
"tulind": "^0.8.18",
"winston": "^3.2.1"
},
"devDependencies": {
"@types/co-body": "0.0.3",
"@types/ioredis": "^4.14.6",
"@types/jest": "^24.0.18",
"@types/koa": "^2.11.2",
"@types/koa-router": "^7.4.0",
"@types/lodash": "^4.14.138",
"@types/node": "^12.12.26",
"@types/request": "^2.48.4",
"@typescript-eslint/eslint-plugin": "^2.26.0",
"@typescript-eslint/parser": "^2.21.0",
"eslint": "^6.8.0",
"eslint-config-airbnb-typescript": "^7.2.0",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-react-hooks": "^2.5.1",
"husky": "^4.2.3",
"jest": "^24.9.0",
"lint-staged": "^10.1.1",
"prettier": "^1.18.2",
"ts-jest": "^24.0.2",
"ts-node": "^8.4.1",
"typescript": "^3.8.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,ts}": "eslint --fix"
}
}