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 24
/
package.json
77 lines (77 loc) · 2.13 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
{
"name": "cryptocurrency-exchange-data-synchronizer",
"version": "3.2.0",
"description": "",
"main": "./build/index.js",
"scripts": {
"start": "node ./build/index.js",
"dev": "tsc && node --inspect ./build/index.js",
"test": "jest",
"prebuild": "rimraf build",
"build": "tsc",
"format": "prettier --write \"src/**/*.ts\" \"src/**/*.js\"",
"lint": "eslint . --ext .ts",
"lint:fix": "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",
"coveralls": "jest --coverage --coverageReporters=text-lcov | coveralls"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts}": "eslint --fix"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"binance-api-node": "^0.9.15",
"candlestick-convert": "^5.0.0",
"ccxt": "^1.22.39",
"dotenv": "^8.0.0",
"eventemitter3": "^4.0.0",
"ioredis": "^4.11.2",
"json-mysql": "^1.2.21",
"kucoin-websocket-api": "^0.2.3",
"lodash": "^4.17.11",
"mysql2": "^2.1.0",
"orderbook-synchronizer": "5.0.1",
"snoowrap": "^1.15.2",
"twitter": "^1.7.1",
"winston": "^3.2.1"
},
"devDependencies": {
"@types/ioredis": "4.14.9",
"@types/jest": "24.9.1",
"@types/lodash": "4.14.149",
"@types/node": "12.12.29",
"@types/request": "2.48.4",
"@types/twitter": "1.7.0",
"@typescript-eslint/eslint-plugin": "2.27.0",
"@typescript-eslint/parser": "2.27.0",
"eslint": "6.8.0",
"eslint-config-airbnb-typescript": "7.2.1",
"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.5",
"jest": "24.9.0",
"lint-staged": "10.1.3",
"prettier": "2.0.4",
"rimraf": "3.0.2",
"ts-jest": "24.3.0",
"ts-node": "8.6.2",
"typescript": "3.8.3"
},
"files": [
"lib/**/*"
]
}