This repository has been archived by the owner on Feb 28, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 2.1 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
{
"name": "friendly-nft",
"devDependencies": {
"@commitlint/cli": "^16.2.1",
"@commitlint/config-conventional": "^16.2.1",
"@eth-optimism/hardhat-ovm": "^0.2.4",
"@nomiclabs/hardhat-ethers": "^2.0.5",
"@nomiclabs/hardhat-etherscan": "^3.0.1",
"@nomiclabs/hardhat-waffle": "^2.0.2",
"@openzeppelin/contracts": "^4.5.0",
"@tenderly/hardhat-tenderly": "^1.0.13",
"chai": "^4.3.6",
"chalk": ">=4.0.0 <6.0.0",
"dotenv": "^16.0.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.4.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-promise": "^5.2.0",
"ethereum-waffle": "^3.4.0",
"prettier": "^2.5.1",
"prettier-plugin-solidity": "^1.0.0-beta.13",
"solhint": "^3.3.7",
"solidity-coverage": "^0.7.20",
"ethers": "^5.5.4",
"hardhat": "^2.8.4",
"hardhat-contract-sizer": "^2.4.0",
"hardhat-deploy": "^0.10.5",
"hardhat-gas-reporter": "^1.0.8",
"husky": "^7.0.4",
"node-watch": "^0.7.3",
"qrcode-terminal": "^0.12.0"
},
"scripts": {
"chain": "hardhat node --network hardhat --no-deploy",
"fork": "hardhat node --no-deploy --network hardhat --fork https://mainnet.infura.io/v3/460f40a260564ac4a4f4b3fffb032dad",
"test": "npx hardhat test",
"node": "npx hardhat node",
"friendly": "npx hardhat run --network localhost scripts/deploy-friendly.js",
"unfriendly": "npx hardhat run --network localhost scripts/deploy-unfriendly.js",
"compile": "hardhat compile",
"deploy": "hardhat deploy --export-all FLOPPY_DEPLOY",
"postdeploy": "hardhat run scripts/publish.js",
"watch": "node scripts/watch.js",
"accounts": "hardhat accounts",
"balance": "hardhat balance",
"send": "hardhat send",
"generate": "hardhat generate",
"account": "hardhat account",
"etherscan-verify": "hardhat etherscan-verify --api-key PSW8C433Q667DVEX5BCRMGNAH9FSGFZ7Q8",
"mint": "hardhat run scripts/mint.js"
},
"dependencies": {
"bip39": "^3.0.4",
"ramda": "^0.28.0"
}
}