-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 2.28 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
{
"name": "@xave-finance/amm-contracts-public",
"version": "1.0.0",
"main": "index.js",
"repository": "https://github.com/xave-finance/amm-contracts-public",
"license": "GPL-3.0-or-later",
"scripts": {
"clean": "npx hardhat clean",
"compile": "hardhat compile",
"reset": "yarn run clean && rm -rf node_modules && yarn install && yarn compile-fix",
"node": "npx hardhat node",
"typecheck": "yarn compile && tsc --noEmit",
"recompile": "rm -rf artifacts && rm -rf cache && yarn compile",
"compile-fix": "TS_NODE_TRANSPILE_ONLY=1 npx hardhat compile"
},
"devDependencies": {
"@balancer-labs/v2-deployments": "^1.1.1",
"@halodao/halodao-contract-addresses": "^1.0.70-beta2",
"@tenderly/hardhat-tenderly": "^1.0.12",
"@types/chai": "^4.2.22",
"@types/chai-almost": "^1.0.1",
"@types/edit-json-file": "^1.6.1",
"@types/faker": "^5.5.8",
"@types/inquirer": "^7.3.3",
"@types/lodash": "^4.14.176",
"@types/mocha": "^9.0.0",
"@types/node": "^14.17.32",
"chai": "^4.3.4",
"chai-almost": "^1.0.1",
"faker": "^5.5.3",
"hardhat": "^2.10.0",
"hardhat-gas-reporter": "^1.0.4",
"hardhat-local-networks-config-plugin": "0.0.6",
"mocha": "^7.2.0",
"ts-node": "^10.4.0",
"typescript": "^4.4.4"
},
"dependencies": {
"@balancer-labs/balancer-js": "^1.0.1",
"@balancer-labs/v2-pool-utils": "^2.0.1",
"@balancer-labs/v2-pool-weighted": "^2.0.1",
"@balancer-labs/v2-solidity-utils": "^2.0.0",
"@balancer-labs/v2-vault": "^2.0.0",
"@nomiclabs/hardhat-ethers": "^2.0.0",
"@nomiclabs/hardhat-etherscan": "^3.1.7",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@openzeppelin/contracts": "^3.4.2",
"@openzeppelin/contracts-upgradeable": "^3.4.2",
"@openzeppelin/hardhat-upgrades": "^1.11.0",
"@truffle/hdwallet-provider": "^1.5.1",
"@typechain/ethers-v5": "^7.2.0",
"@typechain/hardhat": "^2.3.1",
"bignumber.js": "^9.0.1",
"decimal.js": "^10.3.1",
"dotenv": "^10.0.0",
"edit-json-file": "^1.6.0",
"ethereum-waffle": "^3.4.0",
"ethers": "^5.5.1",
"hardhat-tracer": "^1.1.0-rc.6",
"inquirer": "^8.2.0",
"lodash": "^4.17.21",
"open": "^8.3.0",
"solidity-coverage": "^0.7.21",
"truffle-plugin-verify": "^0.5.16",
"typechain": "^5.2.0"
}
}