forked from fifikobayashi/liquidator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.91 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": "liquidator",
"version": "2.1.1",
"description": "Microservice to bid on dYdX closing auctions",
"main": "src/index.js",
"scripts": {
"babel-node": "babel-node",
"dev": "NODE_ENV=development nodemon -e .js -w src --exec npm run babel-node -- src/index.js",
"test": "NODE_ENV=test jest --runInBand --forceExit",
"coverage": "NODE_ENV=test jest --coverage --runInBand --forceExit",
"build": "./node_modules/.bin/babel src --out-dir build/ --source-maps inline",
"start": "node build/index.js",
"lint": "eslint . --ext .js --ignore-path .gitignore",
"compose-clean": "docker-compose rm -f",
"migrate": "echo 'Nothing to migrate'",
"seed": "echo 'Nothing to seed'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dydxprotocol/liquidator.git"
},
"author": "dYdX Trading Inc.",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/dydxprotocol/liquidator/issues"
},
"homepage": "https://github.com/dydxprotocol/liquidator#readme",
"dependencies": {
"@dydxprotocol/solo": "^0.15.4",
"@dydxprotocol/perpetual": "^0.2.7",
"bignumber.js": "^8.1.1",
"dotenv-flow": "^0.4.0",
"lodash": "^4.17.15",
"lru-cache": "^5.1.1",
"luxon": "^1.21.2",
"request-promise-native": "^1.0.8",
"winston": "^3.2.1",
"winston-transport": "^4.3.0"
},
"devDependencies": {
"@babel/cli": "^7.7.4",
"@babel/core": "^7.7.4",
"@babel/node": "^7.7.4",
"@babel/plugin-proposal-class-properties": "^7.7.4",
"@babel/plugin-proposal-object-rest-spread": "^7.7.4",
"@babel/preset-env": "^7.7.4",
"babel-eslint": "^10.0.3",
"coveralls": "^3.0.9",
"eslint": "^5.16.0",
"eslint-config-airbnb-base": "^13.2.0",
"eslint-plugin-babel": "^5.3.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jest": "^22.21.0",
"jest": "^24.9.0",
"nodemon": "^1.19.4",
"supertest": "^4.0.2"
}
}