-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 2.6 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
{
"name": "@spectrexyz/protocol",
"version": "1.0.0",
"license": "GPL-3.0-or-later",
"homepage": "https://github.com/spectrexyz/protocol",
"files": [
"contracts/**/*",
"!contracts/mock/*"
],
"scripts": {
"compile": "npx hardhat compile",
"lint": "npx prettier --write contracts/",
"test:broker": "npx hardhat test test/broker/*",
"test:channeler": "npx hardhat test test/channeler/*",
"test:issuer": "npx hardhat test test/issuer/*",
"test:pool": "npx hardhat test test/pool/pool.test.js",
"test:pool:factory": "npx hardhat test test/pool/pool-factory.test.js",
"test:pool:balancer": "npx mocha --extension ts --require ts-node/register --require hardhat/register --recursive",
"test:token": "npx hardhat test test/token/*",
"test:utils": "npx hardhat test test/utils/*",
"test:vault": "npx hardhat test test/vault/*",
"test": "npx hardhat test",
"test:gas": "REPORT_GAS=true npx hardhat test",
"test:coverage": "npx hardhat coverage",
"deploy:goerli": "npx hardhat deploy --network goerli --reset --gasprice 180000000000",
"verify:goerli": "npx hardhat --network goerli etherscan-verify --api-key $ETHERSCAN_KEY",
"roles:goerli": "npx hardhat run scripts/roles.js --network goerli",
"fractionalize:goerli": "npx hardhat run scripts/fractionalize.ts --network goerli",
"dashboard:goerli": "npx hardhat run scripts/dashboard.js --network goerli",
"addresses:goerli": "ADDRESSES_ONLY=1 npx hardhat run scripts/dashboard.js --network goerli"
},
"dependencies": {
"@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",
"@openzeppelin/contracts": "4.3.3",
"@openzeppelin/contracts-upgradeable": "4.3.3"
},
"devDependencies": {
"@balancer-labs/balancer-js": "^1.0.1",
"@balancer-labs/v2-asset-manager-utils": "^0.2.0",
"@nomiclabs/hardhat-ethers": "^2.2.0",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@types/chai": "^4.2.22",
"@types/mocha": "^10.0.0",
"chai": "^4.3.4",
"chalk": "4.1.2",
"decimal.js": "^10.4.2",
"dotenv": "^16.0.3",
"dprint": "^0.32.1",
"ethereum-waffle": "^3.2.2",
"ethers": "^5.7.2",
"hardhat": "^2.12.0",
"hardhat-deploy": "^0.11.18",
"hardhat-deploy-ethers": "^0.3.0-beta.11",
"hardhat-gas-reporter": "^1.0.4",
"mocha": "^10.1.0",
"prettier": "^2.3.2",
"prettier-plugin-solidity": "^1.0.0-beta.17",
"solidity-coverage": "^0.7.17",
"tiny-invariant": "^1.1.0",
"ts-node": "^10.9.1",
"typescript": "^4.8.4"
}
}