35 lines
1.5 KiB
JSON
Raw Normal View History

2021-10-12 08:35:24 +02:00
{
2023-01-09 11:32:37 +01:00
"name": "codex-contracts-eth",
2021-11-08 16:03:32 +01:00
"license": "MIT",
2021-10-12 08:35:24 +02:00
"scripts": {
"test": "npm run lint && hardhat test",
"fuzz": "hardhat compile && fuzzing/fuzz.sh",
"start": "concurrently --names \"hardhat,deployment\" --prefix \"[{time} {name}]\" \"hardhat node\" \"sleep 2 && npm run deploy\"",
"compile": "hardhat compile",
2025-04-09 16:20:26 +02:00
"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 --network localhost",
"predeploy": "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"
2021-10-12 08:35:24 +02:00
},
"devDependencies": {
"@openzeppelin/contracts": "^5.3.0",
"@nomicfoundation/hardhat-chai-matchers": "^2.0.8",
"@nomicfoundation/hardhat-ignition-ethers": "^0.15.11",
"@nomicfoundation/hardhat-toolbox": "^5.0.0",
"@stdlib/stats-binomial-test": "^0.2.2",
2023-01-09 11:57:01 +01:00
"chai": "^4.3.7",
"ethers": "6.14.3",
"hardhat": "^2.24.2",
2025-04-09 16:20:26 +02:00
"prettier": "^3.5.3",
2025-05-16 20:36:38 +02:00
"prettier-plugin-solidity": "^1.4.3",
"solhint": "^5.1.0",
"concurrently": "^9.1.2"
2021-10-12 08:35:24 +02:00
}
}