forked from thirdweb-dev/contracts
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
65 lines (65 loc) · 2.26 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
{
"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",
"@openzeppelin/contracts": "4.7.3",
"@openzeppelin/contracts-upgradeable": "4.7.3",
"@thirdweb-dev/chains": "^0.1.54",
"@thirdweb-dev/dynamic-contracts": "^1.1.2",
"@thirdweb-dev/sdk": "^4.0.14",
"@typechain/ethers-v5": "^10.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",
"ethers": "^5.0.0",
"fs-extra": "^10.0.1",
"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": "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 \"{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": "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 test --mc Benchmark --gas-report > gasreport.txt",
"forge:snapshot": "forge snapshot --check"
},
"dependencies": {}
}