-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 2.13 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
56
57
58
59
{
"name": "solid-start",
"version": "0.1.0",
"description": "Solidity Hardhat Starter Template",
"main": "index.js",
"license": "MIT",
"private": true,
"scripts": {
"deploy": "hardhat deploy",
"console": "hardhat console",
"compile": "hardhat compile",
"clean": "hardhat clean && rimraf deployments",
"etherscan": "hardhat etherscan-verify",
"sourcify": "hardhat sourcify",
"tenderly:push": "hardhat tenderly:push",
"tenderly:verify": "hardhat tenderly:verify",
"verify": "yarn sourcify && yarn tenderly:push && yarn tenderly:verify && yarn etherscan",
"dev": "yarn deploy --watch --silent",
"chain": "hardhat node --network hardhat --no-deploy",
"coverage": "hardhat coverage --network hardhat",
"test": "hardhat test --network hardhat --fork-block-number ADD_BLOCK_NUM",
"test:gas": "cross-env REPORT_GAS=true hardhat test --network hardhat --fork-block-number ADD_BLOCK_NUM",
"seed": "hardhat run scripts/seed.js",
"docs": "hardhat docgen"
},
"devDependencies": {
"@chainlink/contracts": "^0.3.1",
"@nomiclabs/hardhat-ethers": "npm:hardhat-deploy-ethers",
"@nomiclabs/hardhat-waffle": "^2.0.2",
"@openzeppelin/contracts": "^4.4.2",
"@openzeppelin/contracts-upgradeable": "^4.4.2",
"@tenderly/hardhat-tenderly": "^1.0.13",
"chai": "^4.3.6",
"cross-env": "^7.0.3",
"defender-admin-client": "^1.13.0",
"defender-autotask-client": "^1.12.1",
"defender-relay-client": "^1.12.1",
"dotenv": "^16.0.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-promise": "^6.0.0",
"ethereum-waffle": "^3.4.0",
"ethers": "^5.5.4",
"hardhat": "^2.8.3",
"hardhat-deploy": "^0.10.4",
"hardhat-deploy-tenderly": "^0.1.0",
"hardhat-docgen": "^1.3.0",
"hardhat-gas-reporter": "^1.0.7",
"prettier": "^2.5.1",
"prettier-plugin-solidity": "1.0.0-beta.19",
"rimraf": "^3.0.2",
"solhint": "^3.3.6",
"solidity-coverage": "^0.7.18"
}
}