-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.61 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
{
"name": "exterminator",
"version": "1.0.0",
"description": "Instance that exterminates positions in DeFi",
"main": "build/src/index.js",
"scripts": {
"build": "rm -rf build/ && tsc",
"start": "node build/src/index.js",
"go": "NODE_ENV=local nodemon --signal SIGTERM",
"test": "export $(cat test/.env.test | xargs) && ts-mocha -p ./tsconfig.json test/**/*.test.ts --timeout 10000",
"test:watch": "NODE_ENV=local yarn test -w --watch-files '**/*.ts'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/arcxmoney/liquidator.git"
},
"author": "Classicus",
"license": "Apache-2.0",
"dependencies": {
"@arcxgame/contracts": "^10.11.0",
"@types/express": "^4.17.14",
"axios": "^0.27.2",
"axios-retry": "^3.3.1",
"dotenv-flow": "^0.4.0",
"ethers": "^5.6.8",
"ethers-multicall": "^0.2.3",
"express": "^4.18.2",
"lodash": "^4.17.21",
"sinon": "^14.0.1"
},
"devDependencies": {
"@nomiclabs/hardhat-ganache": "^2.0.1",
"@types/chai": "^4.3.1",
"@types/dotenv-flow": "^3.2.0",
"@types/expect": "^24.3.0",
"@types/lodash": "^4.14.182",
"@types/mocha": "^9.1.1",
"@types/node": "^17.0.36",
"@types/sinon": "^10.0.13",
"@typescript-eslint/parser": "^5.5.0",
"chai": "^4.3.6",
"eslint": "^8.25.0",
"eslint-config-prettier": "^7.1.0",
"eslint-plugin-prettier": "^3.3.1",
"ethereum-waffle": "^3.4.4",
"mocha": "^10.0.0",
"nodemon": "^1.19.4",
"prettier": "^2.6.1",
"ts-mocha": "^10.0.0",
"ts-node": "^10.8.0",
"typescript": "^4.1.2"
},
"engines": {
"node": "16.x"
}
}