-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
77 lines (77 loc) · 2.6 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
{
"name": "@zero-tech/ztoken",
"version": "2.1.0",
"license": "MIT",
"files": [
"contracts",
"typechain-js",
"artifacts",
"docs"
],
"scripts": {
"build-hh": "yarn run clean-hh && yarn run compile",
"clean-hh": "hardhat clean",
"compile": "hardhat compile",
"typechain": "hardhat typechain",
"hardhat": "hardhat",
"merkle": "hardhat merkle",
"test": "hardhat test --show-stack-traces",
"coverage": "yarn run build && hardhat coverage --temp artifacts --network hardhat --solcoverjs ./.solcover.js ",
"fix": "yarn run fix:contracts && yarn run fix:ts",
"fix:contracts": "prettier --write ./contracts/**/*.sol",
"fix:ts": "eslint . --ext .ts --fix",
"lint": "yarn run lint:contracts && yarn run lint:ts",
"lint:contracts": "./node_modules/.bin/solhint -f table contracts/**/*.sol",
"lint:ts": "eslint . --ext .ts",
"clean": "rm -rf ./lib",
"build": "yarn run clean && yarn run compile",
"prepare": "yarn build && yarn typechain && tsc"
},
"dependencies": {
"@openzeppelin/contracts": "4.9.3",
"@openzeppelin/contracts-upgradeable": "4.9.3"
},
"devDependencies": {
"@ethersproject/abi": "5.5.0",
"@ethersproject/bignumber": "5.5.0",
"@ethersproject/bytes": "5.5.0",
"@nomiclabs/hardhat-ethers": "2.2.2",
"@nomiclabs/hardhat-etherscan": "^3.0.0",
"@nomiclabs/hardhat-waffle": "2.0.1",
"@openzeppelin/contracts-400": "npm:@openzeppelin/[email protected]",
"@openzeppelin/contracts-upgradeable-400": "npm:@openzeppelin/[email protected]",
"@openzeppelin/hardhat-upgrades": "^1.26.0",
"@openzeppelin/upgrades-core": "1.10.0",
"@typechain/ethers-v5": "10.1.0",
"@typechain/hardhat": "6.1.2",
"@types/chai": "4.2.0",
"@types/chai-as-promised": "^7.1.6",
"@types/mocha": "9.1.0",
"@types/node": "^20.8.4",
"@typescript-eslint/eslint-plugin": "^6.8.0",
"@typescript-eslint/parser": "^6.8.0",
"chai": "4.3.3",
"chai-as-promised": "^7.1.1",
"cli-interact": "0.1.9",
"csv-parser": "3.0.0",
"dotenv": "8.2.0",
"eslint": "7.21.0",
"eslint-plugin-prettier": "3.3.1",
"ethereum-waffle": "3.3.0",
"ethereumjs-util": "7.0.10",
"hardhat": "2.13.0",
"hardhat-ignore-warnings": "^0.2.9",
"ipfs-http-client": "50.1.1",
"lodash": "4.17.15",
"logdown": "3.3.1",
"prettier": "2.2.1",
"prettier-plugin-solidity": "1.0.0-beta.4",
"solhint": "3.3.3",
"solhint-plugin-prettier": "0.0.5",
"solidity-coverage": "0.8.5",
"ts-generator": "0.1.1",
"ts-node": "10.9.1",
"typechain": "8.1.0",
"typescript": "^5.0.2"
}
}