This repository has been archived by the owner on Apr 8, 2023. 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.42 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": "coin-shuffle-contracts",
"version": "1.0.0",
"license": "MIT",
"author": "Distributed Lab",
"description": "",
"scripts": {
"install": "npx husky install",
"compile": "npx hardhat compile --force",
"coverage": "npx hardhat coverage",
"test": "npx hardhat test",
"test-all": "npm run deploy-dev && npm run test",
"private-network": "npx hardhat node",
"private-network-fork": "npx hardhat node --fork https://mainnet.infura.io/v3/$(grep INFURA_KEY .env | cut -d '\"' -f2)",
"deploy-dev": "npx hardhat migrate --network localhost",
"deploy-goerli": "npx hardhat migrate --confirmations 5 --verify --network goerli",
"deploy-chapel": "npx hardhat migrate --confirmations 1 --verify --network chapel",
"deploy-fuji": "npx hardhat migrate --confirmations 2 --verify --network avalanche_fuji_testnet",
"deploy-eth-mainnet": "npx hardhat migrate --confirmations 5 --verify --network eth_mainnet",
"deploy-bsc-mainnet": "npx hardhat migrate --confirmations 2 --verify --network bsc_mainnet",
"generate-types": "TYPECHAIN_FORCE=true npx hardhat typechain",
"lint-fix": "npm run lint-sol-fix && npm run lint-ts-fix && npm run lint-json-fix",
"lint-json-fix": "prettier --write \"./[a-zA-Z0-9.]+(?!-lock).json\"",
"lint-ts-fix": "prettier --write \"./**/*.ts\"",
"lint-sol-fix": "prettier --write \"contracts/**/*.sol\""
},
"dependencies": {
"@dlsl/dev-modules": "^2.0.3",
"@openzeppelin/contracts": "4.6.0",
"@openzeppelin/contracts-upgradeable": "4.6.0",
"dotenv": "^10.0.0",
"hardhat": "^2.12.0",
"typechain": "^8.1.0"
},
"devDependencies": {
"@dlsl/hardhat-markup": "^1.0.0-rc.7",
"@dlsl/hardhat-migrate": "^1.5.3",
"@metamask/eth-sig-util": "^4.0.0",
"@nomicfoundation/hardhat-chai-matchers": "^1.0.4",
"@nomicfoundation/hardhat-toolbox": "^2.0.1",
"@nomiclabs/hardhat-truffle5": "^2.0.7",
"@nomiclabs/hardhat-web3": "^2.0.0",
"@openzeppelin/hardhat-upgrades": "^1.22.1",
"@typechain/ethers-v5": "^10.1.0",
"@typechain/truffle-v5": "^8.0.1",
"@typechain/web3-v1": "^6.0.1",
"bignumber.js": "^9.0.1",
"chai": "^4.3.4",
"hardhat-contract-sizer": "^2.6.1",
"husky": "^7.0.2",
"mocha": "^9.1.1",
"prettier": "^2.7.1",
"prettier-plugin-solidity": "^1.0.0-beta.24",
"solhint": "^3.3.7",
"solhint-plugin-prettier": "^0.0.5",
"truffle-assertions": "^0.9.2",
"web3": "^1.7.5"
}
}