forked from dinngo/furucombo-contract
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.79 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
57
58
59
60
61
62
63
64
65
{
"name": "Furucombo",
"version": "1.11.0",
"description": "Furucombo contracts",
"main": "truffle-config.js",
"directories": {
"test": "test"
},
"scripts": {
"build": "scripts/build.sh",
"compile": "npx hardhat compile",
"test": "scripts/test.sh",
"lint:solhint": "solhint \"contracts/**/*.sol\"",
"lint:prettier": "scripts/prettier.sh",
"deploy": "scripts/deploy.sh"
},
"repository": {
"type": "git",
"url": "[email protected]:hackathon-black/legocontract.git"
},
"author": "Ben Huang",
"license": "MIT",
"devDependencies": {
"@balancer-labs/sor": "^0.4.0-5",
"@nomiclabs/hardhat-ethers": "^2.0.2",
"@nomiclabs/hardhat-truffle5": "^2.0.2",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@nomiclabs/hardhat-web3": "^2.0.0",
"@openzeppelin/test-helpers": "^0.5.5",
"@truffle/hdwallet-provider": "^1.0.35",
"chai": "^4.3.4",
"chai-as-promised": "^7.1.1",
"chai-bignumber": "^3.0.0",
"ethereum-waffle": "^3.4.0",
"ethereumjs-abi": "^0.6.8",
"ethereumjs-util": "^6.2.0",
"ethers": "^5.4.7",
"ganache-cli": "6.11.0",
"hardhat": "^2.8.0",
"hardhat-deploy": "^0.9.0",
"hardhat-deploy-ethers": "^0.3.0-beta.10",
"husky": "^4.2.5",
"node-fetch": "^2.6.0",
"pify": "^5.0.0",
"prettier": "^1.19.1",
"prettier-plugin-solidity": "^1.0.0-beta.1",
"query-string": "^6.13.1",
"solc": "0.6.12",
"solhint": "^3.0.0",
"truffle": "5.1.60",
"web3": "^1.5.2",
"web3-provider-engine": "^15.0.12"
},
"dependencies": {
"@uniswap/v3-core": "^1.0.0",
"@gelatonetwork/limit-orders-lib": "^0.6.0",
"@openzeppelin/contracts": "3.3.0",
"pify": "^5.0.0"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint:prettier && npm run lint:solhint"
}
}
}