-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 2.56 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
{
"name": "@zero-tech/zmodules",
"version": "0.8.0",
"description": "A collection of modular contracts for different use cases",
"keywords": [],
"author": "Zero CPT",
"license": "MIT",
"engines": {
"node": ">=18",
"npm": ">=10"
},
"scripts": {
"typechain": "hardhat typechain",
"compile": "hardhat compile",
"build": "yarn run clean && yarn run compile",
"postbuild": "yarn save-tag",
"save-tag": "chmod a+x ./src/utils/git-tag/save-tag.sh && bash ./src/utils/git-tag/save-tag.sh",
"clean": "hardhat clean",
"test": "hardhat test",
"coverage": "hardhat coverage",
"coverage-local": "yarn pretest && yarn coverage && yarn posttest",
"check-coverage": "istanbul check-coverage --statements 90 --branches 87 --functions 89 --lines 90",
"docgen": "hardhat docgen",
"lint-sol": "yarn solhint ./contracts/**/*.sol",
"lint-ts": "yarn eslint ./test/** ./src/**",
"lint": "yarn lint-sol && yarn lint-ts --no-error-on-unmatched-pattern",
"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",
"pretest": "yarn mongo:start",
"posttest": "yarn mongo:stop",
"deploy-local": "hardhat run src/deploy/run-campaign.ts --network hardhat",
"deploy-sepolia": "hardhat run src/deploy/run-campaign.ts --network sepolia",
"deploy-meowtestnet": "hardhat run src/deploy/run-campaign.ts --network meowtestnet"
},
"devDependencies": {
"@nomicfoundation/hardhat-chai-matchers": "^2.0.2",
"@nomicfoundation/hardhat-ethers": "^3.0.6",
"@nomicfoundation/hardhat-network-helpers": "^1.0.11",
"@nomicfoundation/hardhat-toolbox": "^4.0.0",
"@nomicfoundation/hardhat-verify": "^2.0.8",
"@openzeppelin/contracts": "5.0.2",
"@openzeppelin/contracts-upgradeable": "5.0.2",
"@openzeppelin/hardhat-upgrades": "^3.1.1",
"@semantic-release/git": "^10.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/zdc": "0.1.6",
"chai": "^4.3.10",
"eslint": "^8.37.0",
"ethers": "^6.9.0",
"hardhat": "^2.22.6",
"hardhat-gas-reporter": "^1.0.9",
"semantic-release": "^21.0.1",
"solhint": "^5.0.1",
"solidity-coverage": "^0.8.12",
"solidity-docgen": "^0.6.0-beta.36",
"ts-node": "10.9.1",
"typechain": "^8.3.2",
"typescript": "^5.0.2"
},
"dependencies": {
"dotenv": "16.0.3"
}
}