This repository has been archived by the owner on Jan 2, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.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
{
"name": "happy",
"version": "1.0.0",
"description": "Sunshine and Rainbows staking algorithm and its implementation.",
"main": ".eslintrc.js",
"scripts": {
"compile": "export LANG=C && npx hardhat compile",
"deploy": "export LANG=C && npx hardhat run scripts/deploy.js",
"node": "export LANG=C && npx hardhat node",
"test": "export LANG=C && npx hardhat test",
"lint": "solhint 'contracts/*.sol'",
"size": "export LANG=C && npx hardhat size-contracts",
"gas": "export LANG=C && export REPORT_GAS=true && npx hardhat test",
"coverage": "export LANG=C && npx hardhat coverage",
"graph": "surya graph contracts/*.sol | dot -Tpng > documents/architecture.png"
},
"author": "Shung",
"license": "UNLICENSED",
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.2",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"chai": "^4.3.4",
"chance": "^1.1.8",
"dotenv": "^10.0.0",
"ethereum-waffle": "^3.4.0",
"ethers": "^5.5.1",
"hardhat": "^2.7.0",
"hardhat-contract-sizer": "^2.4.0",
"hardhat-gas-reporter": "^1.0.8",
"prettier-plugin-solidity": "^1.0.0-beta.19",
"solidity-coverage": "^0.7.20"
},
"optionalDependencies": {
"surya": "^0.4.5"
},
"dependencies": {
"@nomiclabs/hardhat-etherscan": "^3.1.0",
"@openzeppelin/contracts": "^4.4.0",
"@rari-capital/solmate": "^6.2.0",
"keccak256": "^1.0.6",
"merkletreejs": "^0.2.31"
},
"prettier": {
"overrides": [
{
"files": "*.sol",
"options": {
"explicitTypes": "always",
"printWidth": 99
}
}
]
}
}