-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
33 lines (33 loc) · 975 Bytes
/
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
{
"name": "hardhat-nfts-opensea",
"version": "1.0.0",
"main": "index.js",
"author": "@FloatCapital",
"license": "MIT",
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.2",
"@nomiclabs/hardhat-etherscan": "^2.1.7",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@openzeppelin/contracts": "^4.3.2",
"@openzeppelin/hardhat-upgrades": "^1.11.0",
"@tenderly/hardhat-tenderly": "^1.0.12",
"bip39": "^3.0.4",
"hardhat": "^2.6.8",
"hardhat-abi-exporter": "^2.3.0",
"hardhat-deploy": "^0.9.4",
"hardhat-docgen": "^1.1.2",
"hardhat-gas-reporter": "^1.0.4",
"hardhat-spdx-license-identifier": "^2.0.3",
"solidity-coverage": "^0.7.17",
"chai": "^4.3.4",
"ethereum-waffle": "^3.4.0",
"ethers": "^5.5.1"
},
"scripts": {
"compile": "hardhat compile",
"deploy": "hardhat deploy",
"deploy-mumbai": "hardhat deploy --network mumbai",
"test": "npx hardhat test",
"hardhat": "hardhat"
}
}