forked from balancer/balancer-v3-monorepo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 2.81 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
{
"name": "@balancer-labs/v3-pool-weighted",
"version": "0.1.0",
"description": "Balancer V3 Weighted Pools",
"license": "GPL-3.0-only",
"homepage": "https://github.com/balancer-labs/balancer-v3-monorepo/tree/master/pkg/pool-weighted#readme",
"repository": {
"type": "git",
"url": "https://github.com/balancer-labs/balancer-v3-monorepo.git",
"directory": "pkg/pool-weighted"
},
"bugs": {
"url": "https://github.com/balancer-labs/balancer-v3-monorepo/issues"
},
"files": [
"contracts/**/*.sol",
"!contracts/test/**/*.sol"
],
"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:stress": "FOUNDRY_PROFILE=intense forge test --ffi -vvv",
"coverage": "./coverage.sh forge",
"coverage:hardhat": "./coverage.sh hardhat",
"coverage:all": "./coverage.sh all",
"gas": "REPORT_GAS=true hardhat test",
"test:watch": "nodemon --ext js,ts --watch test --watch lib --exec 'clear && yarn test --no-compile'",
"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'"
},
"dependencies": {
"@balancer-labs/v3-interfaces": "workspace:*"
},
"devDependencies": {
"@balancer-labs/solidity-toolbox": "workspace:*",
"@balancer-labs/v3-pool-utils": "workspace:*",
"@balancer-labs/v3-solidity-utils": "workspace:*",
"@typescript-eslint/eslint-plugin": "^5.41.0",
"@typescript-eslint/parser": "^5.41.0",
"decimal.js": "^10.4.2",
"eslint": "^8.26.0",
"eslint-plugin-mocha-no-only": "^1.1.1",
"eslint-plugin-prettier": "^4.2.1",
"hardhat": "^2.21.0",
"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",
"mathjs": "^11.8.0",
"mocha": "^10.1.0",
"nodemon": "^2.0.20",
"solhint": "^3.4.1"
}
}