-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 2.39 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
{
"name": "@zero-tech/zns-contracts",
"version": "0.7.0",
"description": "Zero Name Service Smart Contracts",
"author": "Zero CPT",
"license": "ISC",
"repository": "https://github.com/zer0-os/zNS.git",
"engines": {
"node": ">=18",
"npm": ">=9"
},
"scripts": {
"compile": "hardhat compile",
"lint-sol": "yarn solhint ./contracts/**/*.sol",
"lint-ts": "yarn eslint ./test/** ./src/**",
"lint": "yarn lint-sol & yarn lint-ts --no-error-on-unmatched-pattern",
"clean": "hardhat clean",
"build": "yarn run clean && yarn run compile",
"typechain": "hardhat typechain",
"test": "hardhat test",
"semantic-release": "semantic-release --tag-format='v${version}-dev'",
"coverage": "hardhat coverage",
"check-coverage": "istanbul check-coverage --statements 90 --branches 87 --functions 89 --lines 90",
"devnet": "ts-node src/tenderly/devnet/devnet-execute.ts",
"gas-cost": "ts-node src/utils/gas-costs.ts",
"docgen": "hardhat docgen"
},
"pre-commit": [
"lint"
],
"devDependencies": {
"@ensdomains/ensjs": "2.1.0",
"@ethersproject/providers": "5.7.2",
"@nomicfoundation/hardhat-chai-matchers": "1.0.6",
"@nomicfoundation/hardhat-network-helpers": "^1.0.8",
"@nomicfoundation/hardhat-toolbox": "2.0.2",
"@nomiclabs/hardhat-ethers": "2.2.2",
"@nomiclabs/hardhat-etherscan": "3.0.0",
"@openzeppelin/contracts": "4.9.0",
"@openzeppelin/contracts-upgradeable": "4.8.3",
"@openzeppelin/hardhat-upgrades": "1.26.0",
"@semantic-release/git": "^10.0.1",
"@tenderly/hardhat-tenderly": "^1.7.4",
"@typechain/ethers-v5": "10.1.0",
"@typechain/hardhat": "6.1.2",
"@types/chai": "4.2.0",
"@types/mocha": "9.1.0",
"@types/node": "^18.15.11",
"@zero-tech/eslint-config-cpt": "0.2.7",
"@zero-tech/ztoken": "1.0.1",
"chai": "4.2.0",
"eslint": "^8.37.0",
"ethers": "5.5.1",
"hardhat": "2.13.0",
"hardhat-gas-reporter": "1.0.9",
"logdown": "3.3.1",
"semantic-release": "^21.0.1",
"solhint": "^3.4.1",
"solidity-coverage": "^0.8.5",
"solidity-docgen": "^0.6.0-beta.35",
"ts-node": "10.9.1",
"typechain": "8.1.0",
"typescript": "^5.0.2"
},
"dependencies": {
"@nomicfoundation/hardhat-verify": "^2.0.3",
"axios": "^1.4.0",
"dotenv": "16.0.3",
"hardhat-verify": "^1.0.0"
},
"resolutions": {
"@solidity-parser/parser": "0.16.0"
}
}