forked from JoeBlack220/liquidator-bot
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.3 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.3 KB
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
{
"name": "liquidator-bot",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "env TS_NODE_COMPILER_OPTIONS='{\"module\": \"commonjs\" }' mocha -r ts-node/register 'tests/**/*.ts' --exit",
"start": "ts-node ./src/index.ts",
"build": "rm -rf build/ && tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/JoeBlack220/liquidator-bot.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/JoeBlack220/liquidator-bot/issues"
},
"homepage": "https://github.com/JoeBlack220/liquidator-bot#readme",
"dependencies": {
"@types/axios": "^0.14.0",
"@types/dotenv": "^8.2.0",
"@types/fs-extra": "^9.0.1",
"@types/node": "^14.0.27",
"@types/truffle-privatekey-provider": "^1.1.0",
"@types/web3": "^1.2.2",
"@types/winston": "^2.4.4",
"axios": "^0.19.2",
"dotenv": "^8.2.0",
"fs-extra": "^9.0.1",
"truffle-hdwallet-provider": "^1.0.17",
"truffle-privatekey-provider": "^1.5.0",
"typescript": "^4.0.5",
"web3": "^1.2.11",
"winston": "^3.3.3"
},
"devDependencies": {
"@openzeppelin/test-helpers": "^0.5.6",
"@types/chai": "^4.2.14",
"@types/mocha": "^8.0.4",
"chai": "^4.2.0",
"mocha": "^8.2.1",
"ts-node": "^9.0.0"
}
}