-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
63 lines (63 loc) · 3.07 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": "ecofi-smart-contracts",
"version": "1.0.0",
"description": "Smart contracts for etherium network",
"main": "index.js",
"repository": "ecofi-smart-contracts",
"author": "PovioLabs",
"license": "MIT",
"private": true,
"scripts": {
"hardhat:start": "hardhat node",
"hardhat:list": "hardhat addresses",
"hardhat:deploy:local": "hardhat deploy --export frontend/src/contracts.json --network localhost",
"truffle:contract-size": "truffle run contract-size --contracts EcoFiERC1155 EcoFiExchangeV2 SproutToken EcoToken",
"truffle:compile": "truffle compile",
"truffle:verify-ropsten": "truffle run verify EcoFiERC1155 --debug --network ropsten",
"truffle:verify-ropsten2": "truffle run verify EcoFiCommunityERC1155 --debug --network ropsten",
"truffle:verify-ropsten3": "truffle run verify EcoFiHOERC1155 --debug --network ropsten",
"truffle:verify-rinkeby": "truffle run verify EcoFiExchangeV2 --debug --network rinkeby",
"truffle:verify-rinkeby2": "truffle run verify EcoFiCommunityERC1155 --debug --network rinkeby",
"truffle:verify-rinkeby3": "truffle run verify EcoFiHOERC1155 --debug --network rinkeby",
"truffle:deploy-ropsten": "truffle deploy --network ropsten",
"truffle:verify-mainnet": "truffle run verify EcoFiERC1155 --network mainnet",
"truffle:verify-mainnet2": "truffle run verify EcoFiCommunityERC1155 --network mainnet",
"truffle:verify-mainnet3": "truffle run verify EcoFiHOERC1155 --network mainnet",
"truffle:migrate-rinkeby": "truffle migrate --network rinkeby -f 4 --to 4",
"truffle:migrate-ropsten": "truffle migrate --network ropsten -f 8 --to 8",
"truffle:migrate-mainnet-first": "truffle migrate --network mainnet -f 1 --to 1",
"truffle:migrate-mainnet-second": "truffle migrate --network mainnet -f 2 --to 2",
"truffle:migrate-mainnet-third": "truffle migrate --network mainnet -f 3 --to 3",
"truffle:migrate-mainnet-fourth": "truffle migrate --network mainnet -f 4 --to 4",
"truffle:migrate-mainnet-nft": "truffle migrate --network mainnet -f 10 --to 10",
"truffle:migrate-skale-testnet": "truffle migrate --network skale_testnet -f 1 --to 1"
},
"dependencies": {
"@openzeppelin/contracts-upgradeable": "3.4.0",
"@rarible/exchange-interfaces": "0.2.0",
"@rarible/lazy-mint": "0.4.0",
"@rarible/lib-asset": "0.1.0",
"@rarible/royalties": "0.6.1",
"@rarible/royalties-upgradeable": "0.6.1"
},
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.2",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@openzeppelin/contracts": "^4.1.0",
"chai": "^4.3.4",
"dotenv": "^10.0.0",
"ethereum-waffle": "^3.3.0",
"ethers": "^5.2.0",
"hardhat": "^2.3.0",
"hardhat-deploy": "^0.7.9",
"hardhat-deploy-ethers": "^0.3.0-beta.7",
"protocol-contracts": "github:poviolabs/protocol-contracts#release-0.0.1",
"truffle": "^5.3.9",
"truffle-assertions": "0.9.2",
"truffle-contract-size": "^2.0.1",
"truffle-hdwallet-provider": "^1.0.17",
"truffle-plugin-verify": "^0.5.14",
"ts-node": "^10.0.0",
"typescript": "^4.2.4"
}
}