dagger-contracts/package.json

30 lines
955 B
JSON
Raw Normal View History

2021-10-12 06:35:24 +00:00
{
2023-01-09 10:32:37 +00:00
"name": "codex-contracts-eth",
2021-11-08 15:03:32 +00:00
"license": "MIT",
2021-10-12 06:35:24 +00:00
"scripts": {
2022-02-09 13:43:09 +00:00
"test": "npm run lint && hardhat test",
"fuzz": "hardhat compile && fuzzing/fuzz.sh",
2022-03-22 09:53:13 +00:00
"start": "hardhat node --export deployment-localhost.json",
"compile": "hardhat compile",
2022-02-09 13:37:55 +00:00
"format": "prettier --write contracts/**/*.sol test/**/*.js",
2024-01-24 10:35:48 +00:00
"format:check": "prettier --check contracts/**/*.sol test/**/*.js",
"lint": "solhint contracts/**.sol",
"deploy": "hardhat deploy"
2021-10-12 06:35:24 +00:00
},
"devDependencies": {
2023-01-09 10:57:01 +00:00
"@nomiclabs/hardhat-ethers": "^2.2.1",
2022-03-15 15:15:46 +00:00
"@nomiclabs/hardhat-waffle": "^2.0.3",
2023-01-09 10:57:01 +00:00
"@openzeppelin/contracts": "^4.8.0",
"@stdlib/stats-binomial-test": "^0.0.7",
2023-01-09 10:57:01 +00:00
"chai": "^4.3.7",
"ethereum-waffle": "^3.4.4",
"ethers": "^5.7.2",
"hardhat": "^2.17.1",
"hardhat-deploy": "^0.11.34",
2022-03-15 15:15:46 +00:00
"hardhat-deploy-ethers": "^0.3.0-beta.13",
2023-01-09 10:57:01 +00:00
"prettier": "^2.8.2",
"prettier-plugin-solidity": "^1.1.1",
2022-03-15 15:15:46 +00:00
"solhint": "^3.3.7"
2021-10-12 06:35:24 +00:00
}
}