This repository has been archived by the owner on Jan 16, 2023. It is now read-only.
forked from zer0-os/ZToken_legacy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 2.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
{
"devDependencies": {
"@nomiclabs/hardhat-ethers": "2.0.2",
"@nomiclabs/hardhat-etherscan": "2.1.1",
"@nomiclabs/hardhat-waffle": "2.0.1",
"@ethersproject/bignumber": "5.5.0",
"@ethersproject/abi": "5.5.0",
"@ethersproject/providers": "5.5.0",
"@ethersproject/bytes": "5.5.0",
"@openzeppelin/contracts": "4.0.0",
"@openzeppelin/contracts-upgradeable": "4.0.0",
"@openzeppelin/hardhat-upgrades": "1.12.0",
"@openzeppelin/upgrades-core": "1.10.0",
"@typechain/ethers-v5": "7.2.0",
"@typechain/hardhat": "2.3.1",
"@types/chai": "4.2.14",
"@types/mocha": "8.2.0",
"@types/node": "14.14.25",
"@typescript-eslint/eslint-plugin": "4.16.1",
"@typescript-eslint/parser": "4.16.1",
"chai": "4.3.3",
"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",
"ethers": "5.5.1",
"hardhat": "2.6.8",
"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.7.16",
"ts-generator": "0.1.1",
"ts-node": "9.1.1",
"typechain": "5.2.0",
"typescript": "4.1.4"
},
"scripts": {
"postinstall": "hardhat typechain",
"typechain": "hardhat typechain",
"build": "yarn run clean && yarn run compile",
"clean": "hardhat clean",
"compile": "hardhat compile",
"hardhat": "hardhat",
"merkle": "hardhat merkle",
"test": "hardhat test --show-stack-traces",
"coverage": "yarn run build && hardhat coverage --temp artifacts --network hardhat",
"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"
},
"name": "zToken",
"version": "0.0.0",
"license": "MIT"
}