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": {
|
2025-04-09 16:08:13 +02:00
|
|
|
"test": "npm run lint && hardhat test --parallel",
|
2023-02-28 16:32:47 +01:00
|
|
|
"fuzz": "hardhat compile && fuzzing/fuzz.sh",
|
2025-04-09 16:08:13 +02:00
|
|
|
"start": "hardhat node",
|
2023-03-30 11:11:21 +02:00
|
|
|
"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",
|
2023-04-17 15:00:48 +02:00
|
|
|
"lint": "solhint contracts/**.sol",
|
2025-04-10 09:24:35 +02:00
|
|
|
"deploy": "hardhat run scripts/deploy.js",
|
2024-10-15 12:12:59 +02:00
|
|
|
"verify": "npm run verify:marketplace && npm run verify:state_changes",
|
|
|
|
|
"verify:marketplace": "certoraRun certora/confs/Marketplace.conf",
|
2025-04-09 16:08:13 +02:00
|
|
|
"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": {
|
2025-05-15 11:40:14 +10:00
|
|
|
"@openzeppelin/contracts": "^5.3.0",
|
2025-04-09 16:08:13 +02:00
|
|
|
"@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",
|
2025-04-09 16:08:13 +02:00
|
|
|
"ethers": "6.14.3",
|
2025-06-09 12:25:00 -06:00
|
|
|
"hardhat": "^2.24.2",
|
2025-04-09 16:20:26 +02:00
|
|
|
"prettier": "^3.5.3",
|
2025-01-22 16:07:47 +01:00
|
|
|
"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
|
|
|
}
|
|
|
|
|
}
|