-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
32 lines (32 loc) · 1005 Bytes
/
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
{
"name": "oasys-genesis-contract",
"version": "1.7.0",
"description": "The genesis contracts of Oasys Blockchain",
"main": "index.js",
"scripts": {
"build": "hardhat compile",
"test": "hardhat test",
"coverage": "hardhat coverage",
"lint": "solhint 'contracts/**/*.sol' && prettier -c 'contracts/**/*.sol'",
"task:output-candidate-manager": "hardhat output-candidate-manager > outputs/output-candidate-manager.json",
"task:update-bls": "hardhat update-bls --network localhost"
},
"keywords": [],
"author": "",
"license": "GPL-3.0",
"devDependencies": {
"@nomicfoundation/hardhat-toolbox": "^2.0.2",
"@nomiclabs/hardhat-waffle": "^2.0.3",
"@openzeppelin/contracts": "^4.5.0",
"@types/chai": "^4.3.0",
"@types/mocha": "^9.1.0",
"chai": "^4.3.6",
"hardhat": "^2.9.3",
"solc": "^0.8.12",
"solhint": "^3.3.7",
"solidity-bytes-utils": "^0.8.0",
"ts-node": "^10.7.0",
"typescript": "^4.6.3",
"web3": "^1.7.4"
}
}