-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.88 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.88 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
{
"name": "hardhat-openprotocol",
"version": "1.0.0",
"description": "This is a complete deployment guide on how you can deploy contracts by yourself. Initially we are deploying on Binance smart chain testnet, you can deploy on any chain with minor changes in hardhatconfig.js file. Initially you will require some test bnb so grab some tokens from the [faucet](https://testnet.binance.org/faucet-smart).",
"main": "index.js",
"scripts": {
"test": "npx hardhat test",
"compile": "npx hardhat compile",
"prettier:sol": "npx prettier --write 'contracts/*.sol' && npx prettier --write 'contracts/*/*.sol'",
"prettier:js": "prettier --config ./.prettierrc.yaml --write \"**/*.{js,json,md,ts}\""
},
"author": "",
"license": "MIT",
"devDependencies": {
"@commitlint/cli": "^16.2.3",
"@commitlint/config-conventional": "^16.2.1",
"@nomiclabs/hardhat-ethers": "^2.0.2",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@tenderly/hardhat-tenderly": "^1.0.13",
"@truffle/hdwallet-provider": "^1.5.1",
"chai": "^4.3.4",
"ethereum-waffle": "^3.4.0",
"ethers": "^5.5.1",
"hardhat-abi-exporter": "^2.8.0",
"husky": "^7.0.4",
"lint-staged": "^12.3.6",
"prettier": "^2.6.0",
"prettier-plugin-solidity": "^1.0.0-beta.19"
},
"dependencies": {
"@nomiclabs/hardhat-etherscan": "^2.1.7",
"@pancakeswap/pancake-swap-lib": "0.0.4",
"dotenv": "^10.0.0",
"eth-crypto": "^2.1.0",
"hardhat": "^2.6.7",
"hardhat-contract-sizer": "^2.1.1",
"solc": "^0.8.1",
"solidity-coverage": "^0.7.20",
"web3": "^1.6.0"
},
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/0xHashstack/Open-protocol.git"
},
"keywords": [],
"bugs": {
"url": "https://github.com/0xHashstack/Open-protocol/issues"
},
"homepage": "https://github.com/0xHashstack/Open-protocol#readme"
}