-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
43 lines (43 loc) · 1.3 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
{
"name": "hardhat",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"compile": "npx hardhat compile",
"test": "npx hardhat test",
"coverage": "npx hardhat coverage",
"deploy": "npx hardhat run scripts/deploy.ts",
"node": "npx hardhat node",
"etherscan": "npx hardhat verify --constructor-args scripts/arguments.ts",
"type-check": "tsc --pretty --noEmit",
"test-all": "yarn type-check && yarn test",
"lint": "eslint . && prettier --check .",
"format": "eslint --fix . && prettier --write .",
"prepare": "husky install"
},
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.2",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@types/chai": "^4.2.21",
"@types/mocha": "^9.0.0",
"@types/node": "^16.7.10",
"@typescript-eslint/eslint-plugin": "^4.28.3",
"@typescript-eslint/parser": "^4.28.3",
"chai": "^4.3.4",
"dotenv": "^8.2.0",
"eslint": "^7.31.0",
"eslint-config-prettier": "^8.3.0",
"ethereum-waffle": "^3.4.0",
"ethers": "^5.4.6",
"hardhat": "^2.6.2",
"hardhat-gas-reporter": "^1.0.4",
"husky": "^7.0.0",
"mocha": "^9.1.1",
"prettier": "^2.3.2",
"solidity-coverage": "^0.7.17",
"ts-node": "^10.2.1",
"typescript": "^4.3.5"
},
"packageManager": "yarn@3.0.0"
}