-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
executable file
·32 lines (32 loc) · 1.47 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
{
"name": "forceDAO-yield-farming-strategy-on-polygon",
"version": "1.0.0",
"description": "",
"directories": {
"test": "test"
},
"scripts": {
"script:YieldFarmingStrategy": "truffle exec ./scripts/polygon-mumbai/YieldFarmingStrategy.script.js --network polygon_mumbai",
"test": "truffle test ./test/test-local/* --network local",
"test:YieldFarmingStrategy": "truffle test ./test/test-local/YieldFarmingStrategy.test.js --network local",
"test:MasterChef": "truffle test ./test/test-local/polycat/MasterChef.test.js --network local",
"test:Sai": "truffle test ./test/test-local/truffle-mint-dai/sai.js --network local",
"test:Dai": "truffle test ./test/test-local/truffle-mint-dai/dai.js --network local",
"test:Usdc": "truffle test ./test/test-local/truffle-mint-dai/usdc.js --network local",
"test:Usdt": "truffle test ./test/test-local/truffle-mint-dai/usdt.js --network local",
"compile:local": "truffle compile --reset --network local",
"migrate:local": "truffle migrate --reset --network local",
"compile:polygon_mumbai": "truffle compile --reset --network polygon_mumbai",
"migrate:polygon_mumbai": "truffle migrate --reset --network polygon_mumbai"
},
"author": "masaun",
"license": "MIT",
"dependencies": {
"@openzeppelin/contracts": "^3.4.1",
"@openzeppelin/test-helpers": "^0.5.10",
"@truffle/hdwallet-provider": "^1.3.0",
"dotenv": "^8.2.0",
"eth-block-tracker": "^4.4.3"
},
"devDependencies": {}
}