-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
44 lines (44 loc) · 1.11 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
{
"name": "moola-liquidation-bot",
"version": "1.0.0",
"description": "Moola liquidation for Celo blockchain",
"main": "index.js",
"directories": {
"doc": "docs",
"test": "test"
},
"scripts": {
"start": "node automaticBot/mainMonitoring.js",
"up": "docker-compose --env-file .env.local up -d",
"init": "node db/createTables.js",
"down": "docker-compose --env-file .env.local down",
"clear": "docker-compose --env-file .env.local down -v"
},
"repository": {
"type": "git",
"url": "https://github.com/moolamarket/liquidation-bot"
},
"keywords": [
"aave",
"moola",
"celo"
],
"author": "Oleksii Matiiasevych <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/moolamarket/moola/issues"
},
"homepage": "https://github.com/moolamarket/moola#readme",
"dependencies": {
"@openzeppelin/contracts": "2.4.0",
"bignumber.js": "^9.0.1",
"bluebird": "^3.7.2",
"colors": "^1.4.0",
"dotenv": "^8.2.0",
"mysql": "^2.18.1",
"truffle": "^5.1.50"
},
"devDependencies": {
"@celo/contractkit": "^1.0.1"
}
}