-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.96 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"name": "capture-the-ether",
"version": "0.1.0",
"description": "Capture the Ether Challege Solutions",
"main": "index.js",
"license": "MIT",
"private": true,
"scripts": {
"deploy": "hardhat deploy",
"console": "hardhat console",
"clean": "hardhat clean",
"verify:etherscan": "hardhat etherscan-verify",
"verify:tenderly": "hardhat tenderly-verify",
"verify:sourcify": "hardhat sourcify",
"verify": "yarn verify:sourcify && yarn verify:tenderly && yarn verify:etherscan",
"dev": "yarn deploy --watch --silent",
"chain": "hardhat node --network hardhat --no-deploy",
"coverage": "hardhat coverage --network hardhat",
"test": "hardhat test --network hardhat",
"test:gas": "cross-env REPORT_GAS=true hardhat test --network hardhat",
"seed": "hardhat run scripts/seed.js",
"remix": "remixd -s . --remix-ide https://remix.ethereum.org"
},
"devDependencies": {
"@chainlink/contracts": "^0.2.2",
"@nomiclabs/hardhat-ethers": "npm:hardhat-deploy-ethers",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@openzeppelin/contracts": "^4.3.2",
"@openzeppelin/contracts-upgradeable": "^4.3.2",
"@remix-project/remixd": "^0.5.2",
"@tenderly/hardhat-tenderly": "^1.0.12",
"chai": "^4.3.4",
"cross-env": "^7.0.3",
"defender-admin-client": "^1.11.0",
"defender-autotask-client": "^1.10.0",
"defender-relay-client": "^1.11.1",
"dotenv": "^10.0.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-promise": "^5.1.1",
"ethereum-waffle": "^3.4.0",
"ethers": "^5.5.1",
"hardhat": "^2.6.7",
"hardhat-deploy": "^0.9.4",
"hardhat-gas-reporter": "^1.0.4",
"prettier": "^2.4.1",
"prettier-plugin-solidity": "1.0.0-beta.18",
"solhint": "^3.3.6",
"solidity-coverage": "^0.7.17"
}
}