-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.62 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
{
"name": "lgt-phygital-nft-v3",
"version": "1.0.0",
"description": "",
"main": "index.js",
"keywords": [],
"author": "",
"license": "MIT",
"dependencies": {
"@openzeppelin/contracts": "^4.9.6",
"dotenv": "^8.2.0",
"erc721psi": "github:estarriolvetch/ERC721Psi#0f7504e19048edc85c74117450afcd7b3537e1f2",
"hardhat": "^2.13.0"
},
"scripts": {
"compile": "hardhat clean && hardhat compile",
"deploy:mainnet": "npx hardhat run scripts/deploy.js --network mainnet",
"verify:mainnet": "npx hardhat run scripts/verifyEtherscan.js --network mainnet",
"deploy:polygon": "npx hardhat run scripts/deploy.js --network polygon",
"verify:polygon": "npx hardhat run scripts/verifyEtherscan.js --network polygon",
"deploy:rinkeby": "npx hardhat run scripts/deploy.js --network rinkeby",
"verify:rinkeby": "npx hardhat run scripts/verifyEtherscan.js --network rinkeby",
"run:local": "npx hardhat node",
"deploy:local": "npx hardhat run scripts/deploy.js --network localhost",
"test": "npx hardhat test --network localhost"
},
"devDependencies": {
"@ethersproject/keccak256": "^5.7.0",
"@ethersproject/strings": "^5.7.0",
"@nomiclabs/hardhat-ethers": "^2.0.5",
"@nomiclabs/hardhat-etherscan": "^3.1.7",
"@nomiclabs/hardhat-waffle": "^2.0.5",
"@typechain/ethers-v5": "^10.0.0",
"@typechain/hardhat": "^6.0.0",
"@types/chai": "^4.3.1",
"@types/mocha": "^9.1.1",
"@types/node": "^17.0.31",
"chai": "^4.3.6",
"ethereum-waffle": "^4.0.10",
"ethers": "^5.6.5",
"ts-node": "^10.7.0",
"typechain": "^8.0.0",
"typescript": "^4.6.4"
}
}