-
Notifications
You must be signed in to change notification settings - Fork 509
/
package.json
72 lines (72 loc) · 2.44 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
{
"name": "@thirdweb-dev/contracts",
"description": "",
"version": "2.3.0-6",
"license": "Apache-2.0",
"source": "typechain/index.ts",
"files": [
"/contracts/**/*.sol"
],
"devDependencies": {
"@chainlink/contracts": "^0.6.1",
"@nomiclabs/hardhat-ethers": "^2.0.5",
"@nomiclabs/hardhat-etherscan": "^3.0.3",
"@nomiclabs/hardhat-waffle": "^2.0.3",
"@openzeppelin/contracts": "4.7.3",
"@openzeppelin/contracts-upgradeable": "4.7.3",
"@primitivefi/hardhat-dodoc": "^0.2.0",
"@thirdweb-dev/sdk": "3.10.20",
"@typechain/ethers-v5": "^10.0.0",
"@typechain/hardhat": "^4.0.0",
"@types/fs-extra": "^9.0.13",
"@types/mocha": "^9.1.0",
"@types/node": "^17.0.21",
"@typescript-eslint/eslint-plugin": "^5.13.0",
"@typescript-eslint/parser": "^5.13.0",
"dotenv": "^16.0.0",
"erc721a": "3.3.0",
"erc721a-upgradeable": "^3.3.0",
"eslint": "^8.10.0",
"eslint-config-prettier": "^8.5.0",
"ethereum-waffle": "^3.4.0",
"fs-extra": "^10.0.1",
"hardhat": "^2.9.0",
"hardhat-abi-exporter": "^2.4.1",
"hardhat-contract-sizer": "^2.5.0",
"hardhat-gas-reporter": "^1.0.8",
"keccak256": "^1.0.6",
"merkletreejs": "^0.2.31",
"mocha": "^9.2.1",
"prettier": "^2.5.1",
"prettier-plugin-solidity": "^1.0.0-beta.19",
"solhint": "^3.3.7",
"solhint-plugin-prettier": "^0.0.5",
"ts-node": "^10.6.0",
"tslib": "^2.3.1",
"tsup": "^5.11.11",
"typechain": "^8.0.0",
"typescript": "^4.4.4"
},
"peerDependencies": {
"ethers": "^5.0.0"
},
"resolutions": {
"typescript": "^4.4.4"
},
"scripts": {
"clean": "hardhat clean && rm -rf abi/ && rm -rf artifacts/ && rm -rf dist/ && rm -rf typechain/",
"compile": "hardhat compile",
"lint": "solhint \"contracts/**/*.sol\"",
"prettier": "prettier --config .prettierrc --write \"{contracts,src}/**/*.{js,json,sol,ts}\"",
"prettier:list-different": "prettier --config .prettierrc --list-different \"**/*.{js,json,sol,ts}\"",
"prettier:contracts": "prettier --config .prettierrc --list-different \"{contracts,src}/**/*.sol\"",
"test": "hardhat test",
"typechain": "hardhat typechain",
"build": "yarn clean && yarn compile",
"forge:build": "forge build --hardhat",
"forge:test": "forge test --hardhat",
"export-abi": "hardhat export-abi",
"gas": "forge test --mc Benchmark --gas-report > gasreport.txt",
"forge:snapshot": "forge snapshot --check"
}
}