-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 3.84 KB
/
package.json
File metadata and controls
85 lines (85 loc) · 3.84 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
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
79
80
81
82
83
84
85
{
"name": "@balancer-labs/v3-pools-manager",
"description": "Balancer V3 Pools Manager",
"license": "GPL-3.0-only",
"homepage": "https://github.com/balancer-labs/pools-manager-v3#readme",
"repository": "git@github.com:balancer-labs/pools-manager-v3.git",
"bugs": {
"url": "https://github.com/balancer-labs/pools-manager-v3/issues"
},
"engines": {
"node": ">=18 <18.21"
},
"contributors": [
"Juan Ignacio Ubeira <juani@balancerlabs.dev>",
"Jeffrey Bennett <jeff@balancerlabs.dev>",
"João Bruno Abou Hatem de Liz <joao@balancerlabs.dev>",
"Elshan Dzhafarov <elshan@balancerlabs.dev>"
],
"scripts": {
"build": "yarn compile && rm -rf artifacts/build-info",
"compile": "hardhat compile",
"compile:watch": "nodemon --ext sol --exec yarn compile",
"lint": "yarn lint:solidity && yarn lint:typescript",
"lint:solidity": "npx prettier --check --plugin=prettier-plugin-solidity 'contracts/**/*.sol' ''test/**/*.sol'' && npx solhint 'contracts/**/*.sol'",
"lint:typescript": "NODE_NO_WARNINGS=1 eslint --ext .ts --ignore-path ./.eslintignore --max-warnings 0",
"prettier": "npx prettier --write --plugin=prettier-plugin-solidity 'contracts/**/*.sol' 'test/**/*.sol'",
"test": "yarn test:hardhat && yarn test:forge",
"test:hardhat": "hardhat test",
"test:forge": "yarn build && REUSING_HARDHAT_ARTIFACTS=true forge test --ffi -vvv",
"test:medusa": "medusa fuzz --config medusa.json",
"slither-install": "python3 -m venv slither && bash -c 'source slither/bin/activate && pip3 install https://github.com/crytic/slither/releases/download/0.10.1/0.10.1.zip'",
"slither": "yarn compile --force && bash -c 'source slither/bin/activate && slither --compile-force-framework hardhat --ignore-compile . --config-file .slither.config.json'",
"slither:triage": "yarn compile && bash -c 'source slither/bin/activate && slither --compile-force-framework hardhat --ignore-compile . --config-file .slither.config.json --triage-mode'"
},
"packageManager": "yarn@4.0.0-rc.42",
"dependencies": {
"@balancer-labs/v3-interfaces": "workspace:*",
"@balancer-labs/v3-vault": "workspace:*",
"hardhat": "^2.14.0"
},
"devDependencies": {
"@ethersproject/abi": "^5.7.0",
"@ethersproject/providers": "^5.7.2",
"@nomicfoundation/hardhat-chai-matchers": "^2.0.6",
"@nomicfoundation/hardhat-ethers": "^3.0.5",
"@nomicfoundation/hardhat-ignition": "^0.15.0",
"@nomicfoundation/hardhat-ignition-ethers": "^0.15.0",
"@nomicfoundation/hardhat-network-helpers": "^1.0.8",
"@nomicfoundation/hardhat-toolbox": "^5.0.0",
"@nomicfoundation/hardhat-verify": "^2.0.5",
"@nomicfoundation/ignition-core": "^0.15.0",
"@nomiclabs/hardhat-etherscan": "^3.1.7",
"@openzeppelin/contracts": "^5.0.0",
"@prb/math": "^2.5.0",
"@typechain/ethers-v6": "^0.4.0",
"@typechain/hardhat": "^8.0.0",
"@types/chai": "^4.3.3",
"@types/mocha": "^10.0.0",
"@types/node": "^14.14.31",
"chai": "^4.3.7",
"dotenv": "^16.4.7",
"ds-test": "https://github.com/dapphub/ds-test#e282159d5170298eb2455a6c05280ab5a73a4ef0",
"eslint": "^8.26.0",
"eslint-plugin-mocha-no-only": "^1.1.1",
"eslint-plugin-prettier": "^4.2.1",
"ethers": "^6.13.5",
"forge-std": "https://github.com/foundry-rs/forge-std.git#v1.9.6",
"hardhat-contract-sizer": "^2.10.0",
"hardhat-gas-reporter": "^1.0.9",
"hardhat-ignore-warnings": "^0.2.11",
"permit2": "https://github.com/Uniswap/permit2.git#cc56ad0f3439c502c246fc5cfcc3db92bb8b7219",
"prettier": "^2.8.8",
"prettier-plugin-solidity": "^1.1.3",
"solhint": "^3.4.1",
"solhint-plugin-prettier": "^0.0.5",
"solidity-coverage": "^0.8.11",
"ts-node": "^10.9.1",
"typechain": "^8.1.1",
"typescript": "^4.0.2"
},
"workspaces": [
"lib/balancer-v3-monorepo/pkg/*",
"lib/balancer-v3-monorepo/pvt/*"
]
}