dgf-prototype/ethereum/package.json

40 lines
1.4 KiB
JSON
Raw Normal View History

2024-03-04 19:33:06 -06:00
{
"name": "dgf-prototype",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
2024-03-16 13:53:07 -05:00
"test": "hardhat test",
2024-03-16 14:02:45 -05:00
"automatic-staking-local": "hardhat run --network localhost scripts/automatic-staking.js",
"automatic-staking-sepolia": "hardhat run --network sepolia scripts/automatic-staking.js",
"deploy-local": "hardhat run --network localhost scripts/deploy.js",
"deploy-sepolia": "hardhat run --network sepolia scripts/deploy.js",
"deploy-work-contracts-local": "hardhat run --network localhost scripts/deploy-work-contracts.js",
"deploy-work-contracts-sepolia": "hardhat run --network sepolia scripts/deploy-work-contracts.js",
"verify-sepolia": "hardhat run --network sepolia scripts/verify.js"
2024-03-04 19:33:06 -06:00
},
"author": "",
"license": "ISC",
"devDependencies": {
2024-03-05 21:21:27 -06:00
"@nomicfoundation/hardhat-chai-matchers": "^2.0.6",
2024-03-04 19:33:06 -06:00
"@nomicfoundation/hardhat-toolbox": "^4.0.0",
2024-03-16 13:53:07 -05:00
"@nomicfoundation/hardhat-verify": "^2.0.5",
2024-03-10 11:55:59 -05:00
"chai": "^4.4.1",
2024-03-05 21:21:27 -06:00
"eslint": "^8.57.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-chai-friendly": "^0.7.4",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-react": "^7.34.0",
"eslint-plugin-react-hooks": "^4.6.0",
2024-03-04 19:33:06 -06:00
"hardhat": "^2.20.1",
2024-03-10 11:55:59 -05:00
"mocha": "^10.3.0",
2024-03-04 19:33:06 -06:00
"prettier": "^3.2.5",
"prettier-plugin-solidity": "^1.3.1"
},
"dependencies": {
2024-03-10 11:55:59 -05:00
"@openzeppelin/contracts": "^5.0.2",
"dotenv": "^16.4.5"
2024-03-04 19:33:06 -06:00
}
}