generated from defi-wonderland/solidity-foundry-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 3.16 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
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "buttplug-wars",
"version": "2.1.0",
"description": "A FiveOutOfNine wrapper a-la-0xMonaco style",
"repository": {
"type": "git",
"url": "git+https://github.com/wei3erhase/buttplug-wars.git"
},
"author": "wei3erHase",
"contributors": [
"fiveoutofnine (https://github.com/fiveoutofnine)"
],
"license": "MIT",
"private": true,
"scripts": {
"build": "forge build",
"build:optimized": "FOUNDRY_PROFILE=optimized forge build",
"test": "forge test -vvv",
"test:e2e": "forge test --match-contract E2E -vvv",
"test:unit": "forge test --match-contract Unit -vvv",
"test:unit:deep": "FOUNDRY_FUZZ_RUNS=5000 yarn test:unit",
"coverage": "forge coverage --match-contract Unit",
"deploy:mainnet": "bash -c 'source .env && forge script DeployMainnet --rpc-url $MAINNET_RPC --broadcast --private-key $MAINNET_DEPLOYER_PK --gas-estimate-multiplier 110 --verify --etherscan-api-key $ETHERSCAN_API_KEY'",
"deploy:mainnet:nft": "bash -c 'source .env && forge script DeployMainnetDescriptor --rpc-url $MAINNET_RPC --broadcast --private-key $MAINNET_DEPLOYER_PK --gas-estimate-multiplier 110 --verify --etherscan-api-key $ETHERSCAN_API_KEY'",
"deploy:goerli": "bash -c 'source .env && forge script DeployTestnet --rpc-url $GOERLI_RPC --chain-id 5 --broadcast --private-key $GOERLI_DEPLOYER_PK --gas-estimate-multiplier 130 --verify --etherscan-api-key $ETHERSCAN_API_KEY'",
"deploy:goerli:chess": "bash -c 'source .env && forge script DeployChessForTest --rpc-url $GOERLI_RPC --chain-id 5 --broadcast --private-key $GOERLI_DEPLOYER_PK --gas-estimate-multiplier 130 --verify --etherscan-api-key $ETHERSCAN_API_KEY'",
"deploy:goerli:nft": "bash -c 'source .env && forge script DeployTestnetDescriptor --rpc-url $GOERLI_RPC --chain-id 5 --broadcast --private-key $GOERLI_DEPLOYER_PK --gas-estimate-multiplier 130 --verify --etherscan-api-key $ETHERSCAN_API_KEY'",
"lint:fix": "forge fmt",
"postinstall": "forge install",
"lint:check": "forge fmt --check",
"prepare": "husky install"
},
"dependencies": {
"@defi-wonderland/smock": "^2.3.4",
"@ethersproject/hardware-wallets": "^5.7.0",
"@flashbots/ethers-provider-bundle": "^0.4.3",
"@nomiclabs/hardhat-ethers": "2.1.0",
"@openzeppelin/contracts": "4.5.0"
},
"resolutions": {
"hardhat/**/@ethereumjs/tx": "3.5.0"
},
"devDependencies": {
"@commitlint/cli": "17.0.3",
"@commitlint/config-conventional": "17.0.3",
"@ethereumjs/tx": "3.5.0",
"@nomiclabs/hardhat-etherscan": "3.0.3",
"@nomiclabs/hardhat-waffle": "2.0.3",
"@typechain/ethers-v5": "9.0.0",
"@typechain/hardhat": "5.0.0",
"@types/node": "16.11.26",
"dotenv": "16.0.0",
"ethereum-waffle": "3.4.0",
"ethers": "5.6.0",
"hardhat": "2.11.1",
"husky": "7.0.4",
"lint-staged": "12.3.5",
"mocha": "9.2.2",
"moment": "2.29.1",
"pinst": "3.0.0",
"prettier": "2.5.1",
"sort-package-json": "1.54.0",
"standard-version": "9.3.2",
"ts-node": "10.7.0",
"tsconfig-paths": "3.14.0",
"typechain": "7.0.1",
"typescript": "4.6.2"
},
"lint-staged": {
"*.sol": "forge fmt"
},
"engines": {
"node": "^16.0.0"
}
}