-
Notifications
You must be signed in to change notification settings - Fork 63
/
Copy pathpackage.json
86 lines (86 loc) · 2.93 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
76
77
78
79
80
81
82
83
84
85
86
{
"name": "@buildship/contracts",
"homepage": "https://buildship.xyz",
"repository": "github:buildship-dev/nft-contracts",
"scripts": {
"hardhat-test": "hardhat test",
"hardhat-coverage": "hardhat coverage",
"forge-coverage": "forge coverage --report lcov && lcov-viewer lcov -o ./forge-coverage ./lcov.info",
"hardhat-upload": "hardhat upload",
"compile": "hardhat compile",
"typechain": "hardhat typechain",
"test": "hardhat test",
"coverage": "hardhat coverage && open coverage/index.html",
"predocupdate": "hardhat dodoc",
"docupdate": "cd wiki && git pull && git add . && git commit -m 'update wiki' && git push && cd .."
},
"dependencies": {
"@buildship/hardhat-ipfs-upload": "^0.1.3",
"@divergencetech/ethier": "^0.33.0",
"@openzeppelin/contracts": "^4.8.3",
"@openzeppelin/contracts-upgradeable": "^4.8.3",
"@openzeppelin/merkle-tree": "^1.0.4",
"bip39": "^3.0.4",
"dotenv": "^10.0.0",
"mocha-junit-reporter": "^2.0.2",
"solady": "^0.0.103",
"zlib": "^1.0.5"
},
"devDependencies": {
"@foundry-rs/hardhat-forge": "^0.1.17",
"@nomiclabs/hardhat-ethers": "^2.0.6",
"@nomiclabs/hardhat-etherscan": "^3.1.7",
"@nomiclabs/hardhat-ganache": "^2.0.1",
"@nomiclabs/hardhat-solhint": "^2.0.1",
"@nomiclabs/hardhat-truffle5": "^2.0.5",
"@nomiclabs/hardhat-waffle": "^2.0.3",
"@nomiclabs/hardhat-web3": "^2.0.0",
"@openzeppelin/test-helpers": "^0.5.15",
"@primitivefi/hardhat-dodoc": "^0.2.3",
"@tenderly/hardhat-tenderly": "^1.0.13",
"@truffle/hdwallet-provider": "^1.5.0",
"@typechain/ethers-v5": "^10.0.0",
"@typechain/hardhat": "^6.0.0",
"@typechain/truffle-v5": "^8.0.0",
"@types/chai": "^4.3.1",
"@types/minimist": "^1.2.2",
"@types/mocha": "^9.1.1",
"@types/node": "^17.0.45",
"chai": "^4.3.6",
"erc721a": "^4.2.2",
"erc721a-upgradeable": "^4.2.1",
"eth-gas-reporter": "^0.2.23",
"ethereum-waffle": "^3.4.4",
"ethers": "^5.6.5",
"ganache": "^7.0.1",
"hardhat": "^2.14.0",
"hardhat-contract-sizer": "^2.5.1",
"hardhat-deploy": "^0.11.2",
"hardhat-gas-reporter": "^1.0.8",
"hardhat-nodemon": "github:caffeinum/hardhat-nodemon#patch-1",
"hardhat-output-validator": "^0.1.19",
"hardhat-preprocessor": "^0.1.5",
"hardhat-tracer": "^1.1.0-rc.2",
"keccak256": "^1.0.6",
"merkletreejs": "^0.2.32",
"minimist": "^1.2.5",
"mocha": "^9.1.1",
"prettier": "^2.7.1",
"prettier-plugin-solidity": "^1.0.0-beta.19",
"scripty.sol": "^1.0.2",
"solhint": "^3.3.7",
"solhint-plugin-prettier": "^0.0.5",
"solidity-coverage": "^0.8.2",
"truffle": "^5.4.8",
"truffle-contract-size": "^2.0.1",
"truffle-flattener": "^1.6.0",
"truffle-plugin-verify": "^0.5.21",
"ts-node": "^10.7.0",
"typechain": "^8.0.0",
"typescript": "^4.6.4",
"web3": "^1.7.1"
},
"resolutions": {
"@solidity-parser/parser": "^0.14.0"
}
}