-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
79 lines (79 loc) · 2.99 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
72
73
74
75
76
77
78
79
{
"name": "@gyrostable/core",
"license": "MIT",
"version": "0.1.11",
"main": "./dist/gyro-core.bundle.js",
"types": "./dist/index.d.ts",
"sideEffects": false,
"description": "The Gyroscope Dollar core contracts",
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.0",
"@nomiclabs/hardhat-waffle": "^2.0.0",
"@openzeppelin/contracts": "^3.3.0",
"@typechain/ethers-v5": "^5.0.0",
"@types/chai": "^4.2.14",
"@types/chai-as-promised": "^7.1.3",
"@types/copy-webpack-plugin": "^6.4.0",
"@types/glob": "^7.1.3",
"@types/mocha": "^8.2.0",
"@types/node": "^14.14.20",
"bignumber.js": "^9.0.1",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"copy-webpack-plugin": "^7.0.0",
"cross-env": "^7.0.3",
"dotenv": "^8.2.0",
"ethereum-waffle": "^3.0.0",
"ethers": "5.0.26",
"glob": "^7.1.6",
"hardhat": "^2.0.2",
"hardhat-deploy": "^0.7.0-beta.44",
"hardhat-typechain": "^0.3.4",
"ignore-loader": "^0.1.2",
"npm-run-all": "^4.1.5",
"solc": "0.7.6",
"ts-generator": "^0.1.1",
"ts-loader": "^8.0.14",
"ts-node": "^9.1.1",
"typechain": "^4.0.1",
"typescript": "^4.1.3",
"webpack": "^5.18.0",
"webpack-cli": "^4.4.0",
"yaml": "^1.10.0"
},
"peerDependencies": {
"ethers": "5.0.26"
},
"files": [
"dist"
],
"scripts": {
"build": "run-s build:solidity build:metadata build:js",
"build:full": "run-s build:solidity deploy:full:local build:metadata export build:js",
"build:metadata": "npx ts-node scripts/generate-deployments.ts",
"build:solidity": "npx hardhat compile",
"build:js": "cross-env TS_NODE_PROJECT=\"tsconfig.webpack.json\" npx webpack",
"local:mint": "npx hardhat run --network localhost scripts/mint-gyro.ts",
"local:redeem": "npx hardhat run --network localhost scripts/redeem-gyro.ts",
"test": "brownie test",
"console:local": "npx hardhat --network localhost console",
"run-node": "npx hardhat node --show-accounts --no-deploy",
"task:sync-prices": "npx hardhat --network localhost run scripts/sync-prices.ts",
"task:bind-pools": "npx hardhat --network localhost run scripts/bind-pools.ts",
"task:setup-fund": "npx hardhat --network localhost run scripts/setup-fund.ts",
"task:kovan:sync-prices": "npx hardhat --network kovan run scripts/sync-prices.ts",
"task:kovan:rebalance-pools": "npx hardhat --network kovan run scripts/rebalance-pools.ts",
"task:kovan:rebalance": "run-s task:kovan:sync-prices task:kovan:rebalance-pools",
"deploy:full:local": "run-s deploy:reset task:sync-prices task:bind-pools task:setup-fund",
"deploy:local": "npx hardhat deploy --network localhost",
"deploy:reset": "npx hardhat deploy --network localhost --reset",
"deploy:kovan": "npx hardhat deploy --network kovan",
"export": "npx hardhat export --export artifacts/deployment.json --network localhost"
},
"prettier": {
"printWidth": 100
},
"dependencies": {
"@openzeppelin/contracts-upgradeable": "^3.4.1"
}
}