-
Notifications
You must be signed in to change notification settings - Fork 40
/
package.json
78 lines (78 loc) · 2.18 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
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "Furucombo",
"version": "2.10.0",
"description": "Furucombo contracts",
"main": "truffle-config.js",
"directories": {
"test": "test"
},
"engines": {
"node": "16.18.0",
"npm": "8.19.2"
},
"scripts": {
"build": "scripts/build.sh",
"check": "scripts/check.sh",
"compile": "npx hardhat compile",
"test": "npx hardhat test",
"fuzzing": "scripts/fuzzing.sh",
"coverage": "npx hardhat coverage",
"analysis": "scripts/analysis.sh",
"slither_diff": "scripts/slither_diff.sh",
"lint:solhint": "solhint \"contracts/**/*.sol\"",
"lint:prettier": "scripts/prettier.sh",
"deploy": "npx hardhat deploy"
},
"repository": {
"type": "git",
"url": "[email protected]:dinngodev/furucombo-contract.git"
},
"author": "Ben Huang",
"license": "MIT",
"devDependencies": {
"@balancer-labs/sor": "^0.4.0-5",
"@nomiclabs/hardhat-ethers": "^2.0.2",
"@nomiclabs/hardhat-etherscan": "^3.1.0",
"@nomiclabs/hardhat-truffle5": "^2.0.2",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@nomiclabs/hardhat-web3": "^2.0.0",
"@openzeppelin/test-helpers": "^0.5.16",
"@truffle/hdwallet-provider": "^1.0.35",
"@xplorfin/hardhat-solc-excludes": "^0.1.1",
"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.12.2",
"hardhat-deploy": "^0.11.24",
"hardhat-deploy-ethers": "^0.3.0-beta.10",
"husky": "^4.2.5",
"node-fetch": "^2.6.0",
"pify": "^5.0.0",
"prettier": "2.8.4",
"prettier-plugin-solidity": "1.1.2",
"query-string": "^6.13.1",
"solc": "0.6.12",
"solhint": "^3.0.0",
"solidity-coverage": "^0.7.13",
"truffle": "5.1.60",
"web3": "^1.5.2",
"web3-provider-engine": "^15.0.12"
},
"dependencies": {
"@gelatonetwork/limit-orders-lib": "^0.6.0",
"@openzeppelin/contracts": "^4.3.2",
"@uniswap/v3-core": "^1.0.0",
"dotenv": "^16.0.1",
"pify": "^5.0.0"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint:prettier && npm run lint:solhint"
}
}
}