-
Notifications
You must be signed in to change notification settings - Fork 504
/
package.json
63 lines (63 loc) · 2.36 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
{
"name": "@thirdweb-dev/contracts",
"description": "",
"version": "3.11.4",
"license": "Apache-2.0",
"source": "typechain/index.ts",
"files": [
"/contracts/**/*.sol"
],
"devDependencies": {
"@openzeppelin/contracts": "^4.9.6",
"@openzeppelin/contracts-upgradeable": "^4.9.6",
"@thirdweb-dev/dynamic-contracts": "^1.2.4",
"@thirdweb-dev/merkletree": "^0.2.6",
"@typechain/ethers-v5": "^10.2.1",
"@types/fs-extra": "^9.0.13",
"@types/mocha": "^9.1.1",
"@types/node": "^17.0.45",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"dotenv": "^16.3.1",
"erc721a": "3.3.0",
"erc721a-upgradeable": "^3.3.0",
"eslint": "^8.54.0",
"eslint-config-prettier": "^8.10.0",
"ethers": "^5.7.2",
"fs-extra": "^10.1.0",
"keccak256": "^1.0.6",
"mocha": "^9.2.2",
"prettier": "^2.8.8",
"prettier-plugin-solidity": "^1.2.0",
"solady": "0.0.180",
"solhint": "^3.6.2",
"solhint-plugin-prettier": "^0.0.5",
"ts-node": "^10.9.1",
"tslib": "^2.6.2",
"tsup": "^5.12.9",
"typechain": "^8.3.2",
"typescript": "^4.9.5"
},
"peerDependencies": {
"ethers": "^5.0.0"
},
"resolutions": {
"typescript": "^5.3.2"
},
"scripts": {
"clean": "forge clean && rm -rf abi/ && rm -rf artifacts_forge/ && rm -rf contract_artifacts && rm -rf dist/ && rm -rf typechain/",
"compile": "forge build && npx ts-node scripts/package-release.ts",
"lint": "solhint \"contracts/**/*.sol\"",
"prettier": "prettier --config .prettierrc --write --plugin=prettier-plugin-solidity '{contracts,src}/**/*.sol'",
"prettier:list-different": "prettier --config .prettierrc --plugin=prettier-plugin-solidity --list-different '**/*.sol'",
"prettier:contracts": "prettier --config .prettierrc --plugin=prettier-plugin-solidity --list-different '{contracts,src}/**/*.sol'",
"test": "forge test",
"typechain": "typechain --target ethers-v5 --out-dir ./typechain artifacts_forge/**/*.json",
"build": "yarn clean && yarn compile",
"forge:build": "forge build",
"forge:test": "forge test",
"gas": "forge snapshot --isolate --mc Benchmark --gas-report --diff .gas-snapshot > gasreport.txt",
"forge:snapshot": "forge snapshot --check",
"aabenchmark": "forge test --mc AABenchmarkPrepare && forge test --mc ProfileThirdwebAccount -vvv"
}
}