-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 2.02 KB
/
Copy pathpackage.json
File metadata and controls
56 lines (56 loc) · 2.02 KB
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
{
"name": "@binance-name/bns",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"c": "npx hardhat compile",
"clean": "npx hardhat clean",
"h_flatten": "npx hardhat flatten > hardhat_flattened.sol",
"f": "npx truffle-flattener ./contracts/ERC20MockToken.sol --output ./mock_erc20_ful.sol",
"deploy_kovan": "npx hardhat deploy --network kovan --reset",
"deploy_ropsten": "npx hardhat deploy --network ropsten --reset",
"deploy_rinkeby": "npx hardhat deploy --network rinkeby --reset",
"deploy_eth_mainnet": "npx hardhat deploy --network eth_mainnet",
"deploy_bsc_mainnet": "npx hardhat deploy --network bsc_mainnet",
"deploy_bsc_testnet": "npx hardhat deploy --network bsc_testnet --reset",
"deploy_polygon_testnet": "npx hardhat deploy --network polygon_testnet --reset",
"deploy_local": "npx hardhat clean && npx hardhat deploy --network localhost --reset",
"run_node": "node ./cli/run_node.js",
"abi": "npx hardhat export-abi"
},
"author": "",
"license": "ISC",
"dependencies": {
"@chainlink/contracts": "^0.4.2",
"hardhat-abi-exporter": "^2.8.0",
"ipfs-http-client": "^56.0.1",
"js-confetti": "^0.11.0",
"lodash": "^4.17.21",
"shelljs": "^0.8.5",
"solregex2": "^0.4.4",
"truffle-flattener": "^1.6.0"
},
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.5",
"@nomiclabs/hardhat-etherscan": "^2.1.2",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@openzeppelin/contracts": "^4.6.0",
"@openzeppelin/contracts-upgradeable": "^4.6.0",
"@openzeppelin/hardhat-upgrades": "^1.17.0",
"bn.js": "^5.2.0",
"chai": "^4.3.4",
"colors": "^1.4.0",
"eth-crypto": "^2.0.0",
"eth-sig-util": "^3.0.1",
"ethereum-waffle": "^3.3.0",
"ethereumjs-util": "^7.1.0",
"ethers": "^5.6.9",
"hardhat": "^2.11.2",
"hardhat-contract-sizer": "^2.6.1",
"hardhat-deploy": "^0.11.4",
"hardhat-ethers": "^1.0.1",
"web3": "^1.7.1"
}
}