-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
31 lines (31 loc) · 1.32 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
{
"name": "@ballkidz/defifa-collection-deployer",
"bugs": {
"url": "https://github.com/BallKidz/defifa-collection-deployer/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/BallKidz/defifa-collection-deployer"
},
"version": "1.0.43",
"license": "MIT",
"dependencies": {
"@jbx-protocol/juice-contracts-v3": "^3.1.2",
"@jbx-protocol/juice-721-delegate": "^7.0.0",
"@jbx-protocol/juice-delegates-registry": "^1.0.1",
"@openzeppelin/contracts": "^4.7.3",
"@prb/math": "^4.0.0",
"scripty.sol": "^1.0.2"
},
"devDependencies": {
"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-goerli": "source .env && forge script DeployGoerli --rpc-url $GOERLI_RPC_PROVIDER_URL --broadcast --mnemonic-paths mnemonic.txt --verify --etherscan-api-key $ETHERSCAN_API_KEY --sender $SENDER_ADDRESS --optimize --optimizer-runs 200 -vvvv --via-ir",
"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 --optimize --optimizer-runs 200 -vvvv --via-ir"
}
}