dsa-periphery-contract/package.json

53 lines
1.5 KiB
JSON
Raw Permalink Normal View History

2023-04-28 04:08:48 +00:00
{
"name": "dsa-periphery-contract",
2023-04-28 11:38:58 +00:00
"version": "0.0.1",
"description": "DSA Periphery Contract",
2023-04-28 04:08:48 +00:00
"main": "index.js",
2023-04-28 11:38:58 +00:00
"scripts": {
"build": "npm run clean && npm run compile",
"clean": "npx hardhat clean",
"compile": "npx hardhat compile",
2023-05-04 07:39:46 +00:00
"test": "npm run forge:test",
2023-05-01 05:28:20 +00:00
"forge:install": "forge install",
"forge:build": "forge build --via-ir",
"forge:test": "forge test --via-ir"
2023-04-28 11:38:58 +00:00
},
"repository": {
"type": "git",
"url": "git+https://github.com/Instadapp/dsa-periphery-contract/"
},
"author": {
"name": "INSTADAPP LABS LLC",
"email": "info@instadapp.io"
},
2023-04-28 04:08:48 +00:00
"license": "MIT",
2023-04-28 11:38:58 +00:00
"bugs": {
"url": "https://github.com/Instadapp/dsa-periphery-contract/issues"
},
2023-04-28 04:08:48 +00:00
"dependencies": {
"@connext/interfaces": "^2.0.5",
2023-05-08 20:19:57 +00:00
"@openzeppelin/contracts": "^4.8.3",
"dotenv": "^16.0.3"
2023-05-01 05:28:20 +00:00
},
2023-04-28 11:38:58 +00:00
"devDependencies": {
2023-05-22 15:19:41 +00:00
"@nomicfoundation/hardhat-chai-matchers": "^1.0.6",
2023-04-28 11:38:58 +00:00
"@nomicfoundation/hardhat-foundry": "^1.0.1",
2023-05-22 15:19:41 +00:00
"@nomicfoundation/hardhat-network-helpers": "^1.0.8",
2023-04-28 11:38:58 +00:00
"@nomicfoundation/hardhat-toolbox": "^2.0.2",
2023-05-22 15:19:41 +00:00
"@nomiclabs/hardhat-ethers": "^2.2.3",
"@nomiclabs/hardhat-etherscan": "^3.1.7",
"@typechain/ethers-v5": "^10.2.1",
"@typechain/hardhat": "^6.1.6",
"@types/chai": "^4.3.5",
"@types/mocha": "^10.0.1",
"chai": "^4.3.7",
2023-04-28 11:38:58 +00:00
"hardhat": "^2.14.0",
2023-05-22 15:19:41 +00:00
"hardhat-dependency-compiler": "^1.1.3",
"hardhat-gas-reporter": "^1.0.9",
"solidity-coverage": "^0.8.2",
2023-05-08 20:19:57 +00:00
"ts-node": "^10.9.1",
2023-05-22 15:19:41 +00:00
"typechain": "^8.1.1",
2023-04-28 11:38:58 +00:00
"typescript": "^5.0.4"
2023-04-28 04:08:48 +00:00
}
}