-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 2.49 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": "random-nft",
"devDependencies": {
"@chainlink/contracts": "^0.5.1",
"@nomicfoundation/hardhat-chai-matchers": "^1.0.4",
"@nomicfoundation/hardhat-network-helpers": "^1.0.6",
"@nomicfoundation/hardhat-toolbox": "^2.0.0",
"@nomiclabs/hardhat-ethers": "^2.2.1",
"@nomiclabs/hardhat-etherscan": "^3.1.2",
"@nomiclabs/hardhat-web3": "^2.0.0",
"@openzeppelin/contracts": "^4.8.0",
"@openzeppelin/contracts-upgradeable": "^4.8.0",
"@openzeppelin/hardhat-upgrades": "^1.21.0",
"@typechain/ethers-v5": "^10.1.1",
"@typechain/hardhat": "^6.1.4",
"@types/mocha": "^10.0.0",
"@uniswap/v2-core": "^1.0.1",
"chai": "^4.3.7",
"cross-env": "^7.0.3",
"crypto": "^1.0.1",
"dotenv": "^16.0.3",
"ethers": "^5.7.2",
"fs-extra": "^10.1.0",
"hardhat": "^2.12.2",
"hardhat-contract-sizer": "^2.6.1",
"hardhat-gas-reporter": "^1.0.9",
"oz-custom": "1.1.5-c",
"prettier": "^2.7.1",
"prettier-plugin-solidity": "^1.0.0-rc.1",
"solhint": "^3.3.7",
"solidity-coverage": "^0.8.2",
"ts-node": "^10.9.1",
"typechain": "^8.1.1",
"typescript": "^4.8.4",
"yarn-upgrade-all": "^0.7.1"
},
"scripts": {
"deploy:bsc": "hardhat run --network bsc scripts/deploy.ts",
"deploy:bscTest": "hardhat run --network bscTest scripts/deploy.ts",
"deploy:goerli": "hardhat run --network goerli scripts/deploy.ts",
"deploy:tomoTest": "hardhat run --network tomoTest scripts/deploy.ts",
"upgrade:bscTest": "hardhat run --network bscTest scripts/upgrade.ts",
"upgrade:goerli": "hardhat run --network goerli scripts/upgrade.ts",
"upgrade:tomoTest": "hardhat run --network tomoTest scripts/upgrade.ts",
"verify:bscTest": "hardhat verify --network bscTest",
"verify:fuji": "hardhat verify --network fuji",
"verify:bsc": "hardhat verify --network bsc",
"verify:goerli": "hardhat verify --network goerli",
"verify:tomoTest": "hardhat verify --network tomoTest",
"help:hre": "hardhat help",
"size": "hardhat size-contracts",
"sol:prettier": "prettier --config ./.prettierrc.yml --write ./contracts -l",
"prettier": "prettier --config ./.prettierrc.yml --write \"*.{js,json,md,sol,ts,yml}\"",
"clean": "hardhat clean",
"compile": "prettier --write ./contracts -l && cross-env TS_NODE_TRANSPILE_ONLY=true hardhat compile && solhint --config ./.solhint.json -f table ./contracts//.sol -f table ./contracts/.sol",
"node": "hardhat node",
"test": "hardhat test --network hardhat"
}
}