32 lines
1.2 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 --parallel",
"fuzz": "hardhat compile && fuzzing/fuzz.sh",
"start": "hardhat node",
"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",
2025-04-10 09:24:35 +02:00
"deploy": "hardhat run scripts/deploy.js",
"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": "npx hardhat coverage",
"gas:report": "REPORT_GAS=true npx 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-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",
"prettier-plugin-solidity": "^1.4.2",
2025-01-22 14:51:43 +01:00
"solhint": "^5.0.5"
2021-10-12 08:35:24 +02:00
}
}