-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
51 lines (51 loc) · 2.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
{
"name": "solit",
"packageManager": "yarn@3.5.0",
"version": "1.1.9-alpha-1",
"description": "A Selection of Modified Internal and External Modules for Cost-Efficient Smart Contract Development sourced from @openzeppelin and solmate Libraries",
"author": "tudo <[tudo.dev@gmail.com](mailto:tudo.dev@gmail.com)>",
"license": "MIT",
"scripts": {
"compile": "prettier --write --plugin=prettier-plugin-solidity 'contracts/**/*.sol' && forge build && hardhat compile && solhint --config ./.solhint.json -f table ./contracts/**/*.sol",
"test": "forge test -vvv && forge snapshot --snap logs/.gas-snapshot",
"plugin:size-contracts": "hardhat size-contracts",
"plugin:storage-layout": "hardhat check > logs/storage.txt && hardhat generate-storage-layout --source logs/storage.txt",
"plugin:storage-layout-table": "hardhat check > logs/storage.txt && hardhat generate-storage-layout-table --source logs/storage.txt"
},
"devDependencies": {
"@ethersproject/abi": "^5.7.0",
"@ethersproject/providers": "^5.7.2",
"@nomicfoundation/hardhat-chai-matchers": "^2.0.2",
"@nomicfoundation/hardhat-ethers": "^3.0.4",
"@nomicfoundation/hardhat-network-helpers": "^1.0.9",
"@nomicfoundation/hardhat-toolbox": "^3.0.0",
"@nomicfoundation/hardhat-verify": "^1.1.1",
"@nomiclabs/hardhat-ethers": "^2.2.3",
"@nomiclabs/hardhat-etherscan": "^3.1.7",
"@openzeppelin/contracts": "^4.9.3",
"@openzeppelin/contracts-upgradeable": "^4.9.3",
"@typechain/ethers-v5": "^11.1.1",
"@typechain/ethers-v6": "^0.5.0",
"@typechain/hardhat": "^9.0.0",
"@types/chai": "^4.3.6",
"@types/mocha": "^10.0.1",
"@types/node": "^20.6.2",
"chai": "^4.3.8",
"ethers": "^6.7.1",
"hardhat": "^2.17.3",
"hardhat-contract-sizer": "^2.10.0",
"hardhat-gas-reporter": "^1.0.9",
"hardhat-storage-layout": "^0.1.7",
"prettier": "^3.0.3",
"prettier-plugin-solidity": "^1.1.3",
"solady": "^0.0.123",
"solhint": "^3.6.2",
"solidity-coverage": "^0.8.4",
"solmate": "^6.2.0",
"table": "^6.8.1",
"ts-node": "^10.9.1",
"typechain": "^8.3.1",
"typescript": "^5.2.2",
"yarn-upgrade-all": "^0.7.2"
}
}