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": {
|
2022-02-09 14:43:09 +01:00
|
|
|
"test": "npm run lint && hardhat test",
|
2023-02-28 16:32:47 +01:00
|
|
|
"fuzz": "hardhat compile && fuzzing/fuzz.sh",
|
2025-06-20 16:05:57 +02:00
|
|
|
"start": "concurrently --names \"hardhat,deployment\" --prefix \"[{time} {name}]\" \"hardhat node\" \"sleep 2 && npm run mine && npm run deploy -- --network localhost\"",
|
2023-03-30 11:11:21 +02:00
|
|
|
"compile": "hardhat compile",
|
2025-06-20 16:05:57 +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-06-20 16:05:57 +02:00
|
|
|
"deploy": "hardhat ignition deploy ignition/modules/marketplace.js",
|
|
|
|
|
"mine": "hardhat run scripts/mine.js --network localhost",
|
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-06-20 16:05:57 +02:00
|
|
|
"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": {
|
2025-05-15 11:40:14 +10:00
|
|
|
"@openzeppelin/contracts": "^5.3.0",
|
2025-06-20 16:05:57 +02:00
|
|
|
"@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",
|
|
|
|
|
"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"
|
2021-10-12 08:35:24 +02:00
|
|
|
}
|
|
|
|
|
}
|