-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 2.32 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
{
"name": "soulswap-farms",
"version": "4.0.0",
"main": "index.js",
"scripts": {
"migrate": "truffle migrate --reset",
"compile": "truffle compile",
"size": "truffle run contract-size",
"flat": "truffle-flattener",
"flat:soulV2": "truffle-flattener contracts/tokens/SoulPowerAny.sol > flats/SoulPowerAny_flat.sol",
"flat:seanceV2": "truffle-flattener contracts/tokens/SeanceCircleV2.sol > flats/SeanceCircleV2_flat.sol",
"flat:erc20": "truffle-flattener contracts/mocks/MockERC20.sol > flats/MockERC20_flat.sol",
"flat:bondV2": "truffle-flattener contracts/rewards/SoulBondV2.sol > flats/SoulBondV2_flat.sol",
"flat:bondFantom": "truffle-flattener contracts/rewards/SoulBondFantom.sol > flats/SoulBondFantom_flat.sol",
"flat:manifestor": "truffle-flattener contracts/rewards/SoulManifester.sol > flats/SoulManifester_flat.sol",
"flat:farmManifester": "truffle-flattener contracts/rewards/FarmManifester.sol > flats/FarmManifester_flat.sol",
"verify": "truffle run verify",
"verify:summoner": "truffle run verify SoulSummoner --network testnet --license SPDX-License-Identifier",
"test": "npx hardhat test test/SoulManifester.test.js",
"test:soulAny": "npx hardhat test test/SoulPowerAny.test.js",
"test:seance": "npx hardhat test test/SoulSummoner.seance.test.js",
"test:read": "npx hardhat test test/SoulSummoner.read.test.js",
"coverage": "npx hardhat coverage"
},
"dependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.2",
"@nomiclabs/hardhat-truffle5": "^2.0.0",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@nomiclabs/hardhat-web3": "^2.0.0",
"@openzeppelin/contracts": "^4.1.0",
"@openzeppelin/test-helpers": "^0.5.6",
"@soulswap/swap-core": "^0.0.3",
"@soulswap/swap-periphery": "^0.0.3",
"babel-polyfill": "^6.26.0",
"babel-register": "^6.26.0",
"chai-as-promised": "^7.1.1",
"dotenv": "^8.2.0",
"hardhat": "^2.3.0",
"solc": "^0.8.0",
"truffle": "^5.3.4",
"truffle-contract-size": "^2.0.1",
"truffle-flattener": "^1.5.0",
"truffle-hdwallet-provider-privkey": "^0.3.0"
},
"devDependencies": {
"chai": "^4.2.0",
"ethereum-waffle": "^3.3.0",
"ethers": "^5.4.2",
"solidity-coverage": "^0.7.16",
"truffle-hdwallet-provider": "^1.0.17",
"truffle-plugin-verify": "^0.5.7",
"web3": "^1.3.6"
}
}