-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
64 lines (64 loc) · 2 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
{
"name": "@zero-tech/z-token",
"version": "1.0.0",
"description": "ZERO token contracts",
"repository": {
"type": "git",
"url": "git+https://github.com/zer0-os/ZToken.git"
},
"author": "Zero CPT",
"license": "MIT",
"homepage": "https://github.com/zer0-os/ZToken#readme",
"engines": {
"node": ">=18",
"npm": ">=10"
},
"files": [
"contracts/",
"README.md"
],
"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",
"coverage": "hardhat coverage",
"check-coverage": "istanbul check-coverage --statements 90 --branches 87 --functions 89 --lines 90",
"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"
},
"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",
"@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.7",
"chai": "^4.3.10",
"dotenv": "16.0.3",
"eslint": "^8.37.0",
"ethers": "^6.9.0",
"hardhat": "^2.22.7",
"hardhat-gas-reporter": "^1.0.9",
"solhint": "^5.0.1",
"solidity-coverage": "^0.8.12",
"ts-node": "10.9.1",
"typechain": "^8.3.2",
"typescript": "^5.0.2"
}
}