-
Notifications
You must be signed in to change notification settings - Fork 71
/
package.json
42 lines (42 loc) · 1.28 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
{
"name": "Aave-liquidation",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"clean": "rm -rf lib && mkdir lib",
"build": "npm run clean && babel src --out-dir lib --extensions '.ts,.tsx'",
"start": "babel-node --extensions '.ts' src/app.ts",
"start-prod": "NODE_ENV=production node ./lib/app.js > app.log 2>&1",
"test": "mocha --require @babel/register --require babel-polyfill './test'",
"check-types": "tsc"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@ethersproject/address": "^5.0.10",
"@ethersproject/solidity": "^5.0.9",
"@uniswap/sdk": "^3.0.3",
"dotenv": "^8.2.0",
"ethereum-input-data-decoder": "^0.3.1",
"ethers": "^5.0.31",
"isomorphic-fetch": "^3.0.0",
"lodash.flatmap": "^4.5.0",
"web3": "^1.3.4"
},
"devDependencies": {
"@babel/cli": "^7.12.16",
"@babel/core": "^7.12.16",
"@babel/node": "^7.12.16",
"@babel/plugin-proposal-class-properties": "^7.12.13",
"@babel/plugin-proposal-object-rest-spread": "^7.12.13",
"@babel/preset-env": "^7.12.16",
"@babel/preset-typescript": "^7.12.16",
"@babel/register": "^7.12.13",
"babel-polyfill": "^6.26.0",
"chai": "^4.3.0",
"mocha": "^7.2.0",
"typescript": "^4.1.5"
}
}