forked from jbx-protocol/juice-project-handles
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
27 lines (27 loc) · 1.12 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
{
"name": "@jbx-protocol/project-handles",
"bugs": {
"url": "https://github.com/jbx-protocol/juice-project-handles/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/jbx-protocol/juice-project-handles"
},
"version": "2.0.0",
"license": "MIT",
"devDependencies": {
"@ensdomains/ens-contracts": "^0.0.11",
"@ensdomains/eth-ens-namehash": "^2.0.15",
"@jbx-protocol/contracts-v2": "^8.0.0",
"@openzeppelin/contracts": "4.5.0",
"prettier": "^2.4.0",
"prettier-plugin-solidity": "^1.0.0-beta.19",
"solhint": "^3.3.6",
"solhint-plugin-prettier": "^0.0.5"
},
"scripts": {
"pretty": "prettier --write \"./**/*.{js,jsx,json,sol}\"",
"deploy-rinkeby": "source .env && forge script DeployRinkeby --rpc-url $RINKEBY_RPC_PROVIDER_URL --broadcast --mnemonic-paths mnemonic.txt --verify --etherscan-api-key $ETHERSCAN_API_KEY --sender $SENDER_ADDRESS",
"deploy-mainnet": "source .env && forge script DeployMainnet --rpc-url $MAINNET_RPC_PROVIDER_URL --broadcast --mnemonic-paths mnemonic.txt --verify --etherscan-api-key $ETHERSCAN_API_KEY --sender $SENDER_ADDRESS"
}
}