This repository has been archived by the owner on Oct 14, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.56 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
{
"name": "rentable-protocol",
"version": "1.0.0",
"main": "index.js",
"repository": "[email protected]:rentable-world/rentable-protocol.git",
"author": "Emiliano Bonassi <[email protected]>",
"license": "MIT",
"scripts": {
"network:testnet": "ganache-cli",
"network:mainnet-fork": "hardhat node",
"deploy:testnet": "brownie run deploy_testnet",
"mintNFT": "brownie run mintNFT",
"console": "brownie console",
"test": "forge test --gas-report -vvv",
"slither": "python3 -m venv .venv && .venv/bin/python -m pip install slither-analyzer && .venv/bin/python -m slither .",
"format:check:sol": "prettier --check '**/*.*(sol)'",
"format:check:py": "black --check --include '(tests|scripts)' .",
"format:check": "yarn format:check:sol && yarn format:check:py",
"format:fix:sol": "pretty-quick --pattern '**/*.*(sol|json)' --verbose",
"format:fix:py": "black --include '(tests|scripts)' .",
"format:fix": "yarn format:fix:sol && yarn format:fix:py",
"hint": "solhint \"contracts/**/*.sol\"",
"prepare": "husky install"
},
"devDependencies": {
"@commitlint/cli": "^16.2.3",
"@commitlint/config-conventional": "^16.2.1",
"@openzeppelin/contracts": "4.4.2",
"@openzeppelin/contracts-upgradeable": "4.4.2",
"dotenv": "^10.0.0",
"ganache-cli": "^6.12.2",
"hardhat": "2.9.3",
"husky": "^7.0.4",
"prettier": "^2.3.2",
"prettier-plugin-solidity": "^1.0.0-beta.17",
"pretty-quick": "^3.1.1",
"solhint": "^3.3.6",
"solhint-plugin-prettier": "^0.0.5"
},
"dependencies": {}
}