mirror of
https://github.com/logos-storage/logos-storage-contracts-eth.git
synced 2026-01-02 13:23:10 +00:00
35 lines
1.5 KiB
JSON
35 lines
1.5 KiB
JSON
{
|
|
"name": "codex-contracts-eth",
|
|
"license": "MIT",
|
|
"scripts": {
|
|
"test": "hardhat test",
|
|
"fuzz": "hardhat compile && fuzzing/fuzz.sh",
|
|
"start": "concurrently --names \"hardhat,deployment\" --prefix \"[{time} {name}]\" \"hardhat node\" \"sleep 2 && npm run mine && npm run deploy -- --network localhost\"",
|
|
"compile": "hardhat compile",
|
|
"format": "prettier --write test/**/*.js --plugin=prettier-plugin-solidity contracts/**/*.sol ",
|
|
"format:check": "prettier --check test/**/*.js --plugin=prettier-plugin-solidity contracts/**/*.sol",
|
|
"lint": "solhint contracts/**.sol",
|
|
"deploy": "hardhat ignition deploy ignition/modules/marketplace.js",
|
|
"mine": "hardhat run scripts/mine.js --network localhost",
|
|
"verify": "npm run verify:marketplace && npm run verify:state_changes",
|
|
"verify:marketplace": "certoraRun certora/confs/Marketplace.conf",
|
|
"verify:state_changes": "certoraRun certora/confs/StateChanges.conf",
|
|
"coverage": "hardhat coverage",
|
|
"gas:report": "REPORT_GAS=true hardhat test"
|
|
},
|
|
"devDependencies": {
|
|
"@nomicfoundation/hardhat-chai-matchers": "^2.0.8",
|
|
"@nomicfoundation/hardhat-ignition-ethers": "^0.15.12",
|
|
"@nomicfoundation/hardhat-toolbox": "^5.0.0",
|
|
"@openzeppelin/contracts": "^5.3.0",
|
|
"@stdlib/stats-binomial-test": "^0.2.2",
|
|
"chai": "^4.5.0",
|
|
"ethers": "6.14.4",
|
|
"hardhat": "^2.24.3",
|
|
"prettier": "^3.5.3",
|
|
"prettier-plugin-solidity": "^1.4.3",
|
|
"solhint": "^5.1.0",
|
|
"concurrently": "^9.1.2"
|
|
}
|
|
}
|