-
Notifications
You must be signed in to change notification settings - Fork 380
/
package.json
71 lines (71 loc) · 2.69 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
{
"name": "@balancer-labs/v2-pool-utils",
"version": "4.1.1",
"description": "Utilities for creating Balancer V2 Pools",
"license": "GPL-3.0-only",
"homepage": "https://github.com/balancer-labs/balancer-v2-monorepo/tree/master/pkg/pool-utils#readme",
"repository": {
"type": "git",
"url": "https://github.com/balancer-labs/balancer-v2-monorepo.git",
"directory": "pkg/pool-utils"
},
"bugs": {
"url": "https://github.com/balancer-labs/balancer-v2-monorepo/issues"
},
"files": [
"contracts/**/*.sol",
"!contracts/test/**/*.sol"
],
"scripts": {
"build": "yarn compile",
"compile": "hardhat compile && rm -rf artifacts/build-info",
"compile:watch": "nodemon --ext sol --exec yarn compile",
"lint": "yarn lint:solidity && yarn lint:typescript",
"lint:solidity": "solhint 'contracts/**/*.sol'",
"lint:typescript": "NODE_NO_WARNINGS=1 eslint . --ext .ts --ignore-path ../../.eslintignore --max-warnings 0",
"test": "yarn compile && mocha --extension ts --require hardhat/register --require @balancer-labs/v2-common/setupTests --recursive",
"test:fast": "yarn compile && mocha --extension ts --require hardhat/register --require @balancer-labs/v2-common/setupTests --recursive --parallel --exit",
"test:watch": "nodemon --ext js,ts --watch test --watch lib --exec 'clear && yarn test --no-compile'",
"test-fuzz": "forge test"
},
"dependencies": {
"@balancer-labs/v2-interfaces": "workspace:*",
"@balancer-labs/v2-solidity-utils": "workspace:*"
},
"devDependencies": {
"@balancer-labs/v2-common": "workspace:*",
"@balancer-labs/v2-helpers": "workspace:*",
"@balancer-labs/v2-vault": "workspace:*",
"@nomicfoundation/hardhat-network-helpers": "^1.0.6",
"@nomiclabs/hardhat-ethers": "^2.2.1",
"@nomiclabs/hardhat-waffle": "^2.0.3",
"@types/chai": "^4.3.3",
"@types/lodash": "^4.14.186",
"@types/mocha": "^10.0.0",
"@types/node": "^14.14.31",
"@typescript-eslint/eslint-plugin": "^5.41.0",
"@typescript-eslint/parser": "^5.41.0",
"chai": "^4.3.6",
"decimal.js": "^10.4.2",
"eslint": "^8.26.0",
"eslint-plugin-mocha-no-only": "^1.1.1",
"eslint-plugin-prettier": "^4.2.1",
"ethereum-waffle": "^3.4.4",
"ethers": "^5.7.2",
"hardhat": "^2.12.5",
"hardhat-ignore-warnings": "^0.2.4",
"lodash.frompairs": "^4.0.1",
"lodash.pick": "^4.4.0",
"lodash.range": "^3.2.0",
"lodash.times": "^4.3.2",
"lodash.zip": "^4.2.0",
"mocha": "^10.1.0",
"nodemon": "^2.0.20",
"prettier": "^2.7.1",
"prettier-plugin-solidity": "v1.0.0-alpha.59",
"solhint": "^3.2.0",
"solhint-plugin-prettier": "^0.0.4",
"ts-node": "^10.9.1",
"typescript": "^4.0.2"
}
}