forked from superpowerlabs/bc-genesis
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.76 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
{
"name": "bc-genesis",
"version": "0.0.1",
"description": "",
"scripts": {
"clean": "rimraf artifacts cache coverage coverage.json",
"test": "NODE_ENV=test npx hardhat test",
"test:gas": "NODE_ENV=test GAS_REPORT=yes npx hardhat test",
"compile": "NODE_ENV=test npx hardhat compile",
"lint": "prettier --write 'contracts/**/*.sol' && solhint 'contracts/**/*.sol'",
"format": "npx prettier --write ./test/fixtures/**/*.js ./**/*.js",
"coverage": "npx hardhat coverage",
"postinstall": "./post-install.sh",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/superpowerlabs/bc-genesis.git"
},
"license": "MIT",
"devDependencies": {
"@ndujalabs/erc721attributable": "^0.1.0",
"@nomiclabs/hardhat-ethers": "^2.0.3",
"@nomiclabs/hardhat-etherscan": "^2.1.8",
"@nomiclabs/hardhat-waffle": "^2.0.2",
"@openzeppelin/contracts": "^4.8.0",
"@openzeppelin/contracts-upgradeable": "^4.8.0",
"@openzeppelin/hardhat-upgrades": "^1.19.0",
"@secrez/cryptoenv": "^0.2.2",
"chai": "^4.3.4",
"dotenv": "^16.0.3",
"ethereum-waffle": "^3.4.0",
"ethers": "^5.5.2",
"hardhat": "^2.13.0",
"hardhat-contract-sizer": "^2.4.0",
"hardhat-gas-reporter": "^1.0.6",
"husky": "^8.0.0",
"prettier": "^2.5.1",
"prettier-plugin-solidity": "^1.0.0-beta.19",
"pretty-quick": "^3.1.3",
"require-or-mock": "^0.2.1",
"rimraf": "^5.0.1",
"solhint": "^3.3.6",
"solidity-coverage": "^0.7.21",
"soliutils": "^0.0.4",
"typescript": "^4.7.3"
},
"lint-staged": {
"*.js": "prettier --write"
},
"dependencies": {
"ethereumjs-util": "^7.1.5",
"fs-extra": "^11.1.0",
"keccak256": "^1.0.6",
"merkletreejs": "^0.3.9"
}
}