forked from bitbankinc/exchangeDepositContract
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 2.22 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 2.22 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
57
58
59
{
"name": "exchangeDepositContract",
"version": "0.0.1",
"description": "A deposit contract for exchanges",
"scripts": {
"build": "hardhat compile",
"coverage": "npm run coverage:run && npm run coverage:check",
"coverage:check": "istanbul check-coverage --statements 100 --branches 100 --functions 100 --lines 100",
"coverage:run": "hardhat coverage",
"deploy:mainnet": "hardhat deploy --network mainnet",
"deploy-proxy:mainnet": "hardhat deploy-proxy --network mainnet",
"deploy:sepolia": "hardhat deploy --network sepolia",
"deploy-proxy:sepolia": "hardhat deploy-proxy --network sepolia",
"deploy:localhost": "hardhat deploy --network localhost",
"deploy-proxy:localhost": "hardhat deploy-proxy --network localhost",
"format": "npm run prettier -- --write",
"format:ci": "npm run prettier -- --check",
"lint": "solhint -c ./.solhint.json './contracts/**/*.sol'",
"prepare": "hardhat clean && npm run build",
"prettier": "prettier '{,!(coverage|example)/**/}*.{js,ts,sol}' --bracket-spacing --single-quote --trailing-comma=all",
"test": "hardhat test",
"verify:ExchangeDeposit": "node ./bin/verifyContract.js ExchangeDeposit",
"verify:ProxyFactory": "node ./bin/verifyContract.js ProxyFactory"
},
"keywords": [
"exchange",
"solidity",
"contract",
"deposits"
],
"author": "Jonathan Underwood",
"license": "MIT",
"files": [
"contracts/ExchangeDeposit.sol",
"contracts/ProxyFactory.sol",
"artifacts/contracts/ExchangeDeposit.sol/ExchangeDeposit.json",
"artifacts/contracts/ProxyFactory.sol/ProxyFactory.json"
],
"devDependencies": {
"@nomicfoundation/hardhat-chai-matchers": "^1.0.6",
"@nomiclabs/hardhat-ethers": "^2.2.3",
"@nomiclabs/hardhat-etherscan": "^3.1.0",
"@nomiclabs/hardhat-truffle5": "^2.0.7",
"@nomiclabs/hardhat-web3": "^2.0.0",
"@openzeppelin/contracts": "^4.9.6",
"@openzeppelin/test-helpers": "^0.5.16",
"chai": "^4.3.10",
"ethers": "^5.7.2",
"hardhat": "^2.12.7",
"mocha": "^10.4.0",
"prettier": "^3.2.5",
"prettier-plugin-solidity": "^1.3.1",
"rlp": "^2.2.7",
"solc": "0.8.20",
"solhint": "^5.1.0",
"solidity-coverage": "^0.8.16",
"web3": "^1.10.4"
}
}