-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
35 lines (35 loc) · 1.2 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
{
"name": "nft-royalty-management-system",
"license": "MIT",
"scripts": {
"chain": "hardhat node",
"test": "hardhat test",
"test:parallel": "mocha --require hardhat/register --recursive --parallel --timeout 10000 --exit",
"test:core": "hardhat test test/1_CoreBasics.test.js ",
"test:scen": "hardhat test test/2_Scenarios.test.js",
"compile": "hardhat compile",
"deploy:mumbai": "hardhat clean && hardhat run --network mumbai scripts/deploy.js",
"deploy:polygon": "hardhat clean && hardhat run --network polygon scripts/deploy.js",
"accounts": "hardhat accounts",
"balance": "hardhat balance",
"generate": "hardhat generate",
"account": "hardhat account"
},
"dependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.2",
"@nomiclabs/hardhat-etherscan": "^2.1.6",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@openzeppelin/contracts": "^4.5.0",
"@rari-capital/solmate": "^6.2.0",
"chai": "^4.3.4",
"chalk": "^4.1.2",
"dotenv": "^10.0.0",
"ethereum-waffle": "^3.3.0",
"ethers": "^5.4.6",
"hardhat": "^2.8.3",
"hardhat-contract-sizer": "^2.0.3",
"hardhat-gas-reporter": "^1.0.4",
"mocha": "^9.0.2",
"progress": "^2.0.3"
}
}