-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
84 lines (84 loc) · 3.11 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
75
76
77
78
79
80
81
82
83
84
{
"name": "@zero-tech/zns-contracts",
"version": "1.0.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",
"postbuild": "yarn save-tag",
"typechain": "hardhat typechain",
"pretest": "yarn mongo:start",
"test": "hardhat test",
"test-local": "yarn test",
"posttest": "yarn mongo:stop",
"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",
"save-tag": "chmod a+x ./src/utils/git-tag/save-tag.sh && bash ./src/utils/git-tag/save-tag.sh",
"base64": "ts-node src/utils/convert-base64.ts",
"mongo:start": "docker-compose up -d",
"mongo:stop": "docker-compose stop",
"mongo:down": "docker-compose down",
"mongo:drop": "ts-node src/utils/drop-db.ts",
"run-sepolia": "hardhat run src/deploy/run-campaign.ts --network sepolia"
},
"pre-commit": [
"lint"
],
"devDependencies": {
"@ensdomains/ensjs": "2.1.0",
"@nomicfoundation/hardhat-chai-matchers": "^2.0.2",
"@nomicfoundation/hardhat-ethers": "^3.0.5",
"@nomicfoundation/hardhat-network-helpers": "^1.0.9",
"@nomicfoundation/hardhat-toolbox": "^4.0.0",
"@nomicfoundation/hardhat-verify": "^2.0.0",
"@openzeppelin/contracts": "4.9.3",
"@openzeppelin/contracts-400": "npm:@openzeppelin/[email protected]",
"@openzeppelin/contracts-upgradeable": "4.9.3",
"@openzeppelin/contracts-upgradeable-400": "npm:@openzeppelin/[email protected]",
"@openzeppelin/defender-sdk": "^1.7.0",
"@openzeppelin/hardhat-upgrades": "2.5.0",
"@semantic-release/git": "^10.0.1",
"@tenderly/hardhat-tenderly": "^2.0.1",
"@typechain/ethers-v6": "^0.5.1",
"@typechain/hardhat": "^9.1.0",
"@types/chai": "^4.3.11",
"@types/mocha": "^9.1.0",
"@types/node": "^18.15.11",
"@zero-tech/eslint-config-cpt": "0.2.7",
"@zero-tech/ztoken": "2.0.0",
"chai": "^4.3.10",
"eslint": "^8.37.0",
"ethers": "^6.9.0",
"hardhat": "^2.19.1",
"hardhat-gas-reporter": "^1.0.9",
"semantic-release": "^21.0.1",
"solhint": "^4.0.0",
"solidity-coverage": "^0.8.5",
"solidity-docgen": "^0.6.0-beta.36",
"ts-node": "10.9.1",
"typechain": "^8.3.2",
"typescript": "^5.0.2"
},
"dependencies": {
"@zero-tech/zdc": "0.1.3",
"axios": "^1.4.0",
"dotenv": "16.0.3",
"mongodb": "^6.1.0",
"winston": "^3.11.0"
}
}