-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
51 lines (51 loc) · 1.39 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
{
"name": "defi-arb-bot",
"version": "1.0.0",
"description": "example defi arb bot",
"main": "bot.ts",
"directories": {
"example": "examples"
},
"scripts": {
"test": "env TS_NODE_COMPILER_OPTIONS='{\"module\": \"commonjs\" }' mocha -r ts-node/register 'test/**/*.ts' --timeout 100000",
"prettier": "npx prettier --write contracts/**/*.sol && npx prettier --write --config ./.prettierrc './**/*.ts'",
"nuke": "rm -rf build && npx truffle compile && npx truffle migrate --reset"
},
"author": "",
"license": "ISC",
"dependencies": {
"@openzeppelin/contracts": "^2.5.1",
"@studydefi/money-legos": "^2.4.1",
"@uniswap/sdk": "^2.0.5",
"@types/node": "^14.14.20",
"ethers": "^5.0.24",
"truffle": "^5.1.61",
"typescript": "^4.1.3"
},
"devDependencies": {
"@truffle/hdwallet-provider": "^1.2.1",
"@types/chai": "^4.2.14",
"@types/mocha": "^8.2.0",
"chai": "^4.2.0",
"dotenv": "^8.2.0",
"husky": "^4.3.8",
"mocha": "^8.2.1",
"prettier": "^2.2.1",
"prettier-plugin-solidity": "^1.0.0-beta.3",
"solhint": "^3.3.2",
"solhint-plugin-prettier": "0.0.5",
"ts-node": "^9.1.1",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"tslint-plugin-prettier": "^2.3.0",
"web3": "^1.2.9"
},
"engines": {
"node": "12.x"
},
"husky": {
"hooks": {
"pre-commit": "npm run prettier"
}
}
}