-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.03 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.03 KB
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
{
"name": "zerti",
"scripts": {
"compile": "npx hardhat compile",
"doc": "npx hardhat dodoc",
"format": "prettier --write contracts/**/*.sol",
"solhint": "solhint -f table contracts/**/*.sol",
"test": "npx hardhat test"
},
"author": {
"name": "Lucas Grasso Ramos",
"url": "https://lucasgrasso.com.ar"
},
"collaborators": [
{
"name": "Matias Arazi"
}
],
"devDependencies": {
"@nomicfoundation/hardhat-toolbox": "^2.0.2",
"@openzeppelin/hardhat-upgrades": "^1.22.1",
"@typescript-eslint/eslint-plugin": "^5.57.0",
"@typescript-eslint/parser": "^5.57.0",
"eslint": "^8.37.0",
"hardhat": "^2.13.0",
"prettier": "^2.8.7",
"prettier-plugin-solidity": "^1.1.3",
"solhint": "^3.4.1",
"solhint-plugin-prettier": "^0.0.5"
},
"dependencies": {
"@openzeppelin/contracts": "^4.8.2",
"@openzeppelin/contracts-upgradeable": "^4.8.2",
"@primitivefi/hardhat-dodoc": "^0.2.3",
"dotenv": "^16.0.3",
"solidity-bytes-utils": "^0.8.0",
"@nomiclabs/hardhat-waffle": "^2.0.3"
}
}