-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
39 lines (39 loc) · 1.26 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
{
"name": "hardhat-test",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"fork": "hardhat node --fork https://eth-mainnet.alchemyapi.io/v2/GVQRQezmyi7tO268bhIl5CSo6lM9ubfp --fork-block-number 11095000",
"prettier-format": "prettier --write '**/*.{js,json,md,sol}'",
"compile": "hardhat compile",
"coverage": "hardhat coverage --testfiles 'test/*.ts'",
"lint": "yarn run lint:prettier && yarn run lint:sol",
"lint:sol": "hardhat check",
"lint:prettier": "prettier . --check",
"test": "hardhat test"
},
"devDependencies": {
"@chainlink/contracts": "^0.0.11",
"@nomiclabs/hardhat-ethers": "^2.0.0",
"@nomiclabs/hardhat-solhint": "^2.0.0",
"@nomiclabs/hardhat-waffle": "^2.0.0",
"@typechain/ethers-v5": "^5.0.0",
"@types/chai": "^4.2.14",
"@types/mocha": "^8.2.0",
"@types/node": "^14.14.12",
"chai": "^4.2.0",
"ethereum-waffle": "^3.0.0",
"ethers": "^5.0.24",
"hardhat": "^2.0.5",
"hardhat-abi-exporter": "^2.0.6",
"hardhat-typechain": "^0.3.3",
"prettier": "^2.2.1",
"prettier-plugin-solidity": "^1.0.0-beta.1",
"solidity-coverage": "^0.7.13",
"ts-generator": "^0.1.1",
"ts-node": "^9.1.0",
"typechain": "^4.0.0",
"typescript": "^4.1.2"
}
}