-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
44 lines (44 loc) · 1.3 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
{
"name": "contracts-v2",
"version": "0.0.1",
"license": "MIT",
"author": "Thales",
"description": "The smart contracts which make up the Thales system.",
"scripts": {
"format": "prettier --write \"contracts/**/*.sol\" \"**/*.js\" \"**/*.md\" \"**/*.yml\" \"**/*.json\"",
"prepare": "husky install",
"clean-install": "rm -rf build && rm ./package-lock.json && rm -rf node_modules/* && npm install",
"compile": "hardhat compile",
"test": "node --max-old-space-size=4096 ./node_modules/.bin/hardhat test",
"coverage": "node --max-old-space-size=4096 ./node_modules/.bin/hardhat coverage"
},
"devDependencies": {
"@nomicfoundation/hardhat-toolbox": "^4.0.0",
"@nomiclabs/hardhat-web3": "^2.0.0",
"@openzeppelin/hardhat-upgrades": "^3.0.0",
"hardhat": "^2.19.1",
"hardhat-abi-exporter": "^2.10.1",
"hardhat-contract-sizer": "^2.10.0",
"husky": "^8.0.3",
"keccak256": "^1.0.6",
"merkletreejs": "^0.3.11",
"prettier": "^3.1.0",
"prettier-plugin-solidity": "^1.2.0",
"solc": "^0.8.23-fixed",
"solhint": "^4.0.0"
},
"keywords": [
"thales"
],
"dependencies": {
"@openzeppelin/contracts": "^5.0.0",
"@openzeppelin/contracts-upgradeable": "^5.0.0",
"@thales-dao/contracts": "^0.1.3",
"bytes32": "^0.0.3"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
}
}