dagger-contracts/package.json

25 lines
726 B
JSON
Raw Normal View History

2021-10-12 08:35:24 +02:00
{
2021-11-08 16:03:32 +01:00
"name": "dagger-contracts",
"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",
2022-02-09 14:17:23 +01:00
"start": "hardhat node --export 'deployment-localhost.json'",
2022-02-09 14:37:55 +01:00
"format": "prettier --write contracts/**/*.sol test/**/*.js",
"lint": "solhint contracts/**.sol"
2021-10-12 08:35:24 +02:00
},
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.2",
"@nomiclabs/hardhat-waffle": "^2.0.1",
2021-10-12 13:35:41 +02:00
"@openzeppelin/contracts": "^4.3.2",
2021-10-12 08:35:24 +02:00
"chai": "^4.3.4",
"ethereum-waffle": "^3.4.0",
"ethers": "^5.4.7",
2021-11-16 10:44:13 +01:00
"hardhat": "^2.6.5",
2021-11-16 14:06:37 +01:00
"hardhat-deploy": "^0.9.8",
2022-02-09 14:17:23 +01:00
"hardhat-deploy-ethers": "^0.3.0-beta.11",
"prettier": "^2.5.1",
2022-02-09 14:37:55 +01:00
"prettier-plugin-solidity": "^1.0.0-beta.19",
"solhint": "^3.3.6"
2021-10-12 08:35:24 +02:00
}
}