generated from taryune/hardhat-typescript-starter
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
58 lines (58 loc) · 1.75 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
{
"name": "hardhat-scaffold",
"version": "1.0.0",
"description": "",
"main": "index.js",
"directories": {
"test": "test"
},
"scripts": {
"prepare": "husky install",
"build": "npm run clean && npm run compile",
"clean": "npx hardhat clean",
"compile": "npx hardhat compile",
"test": "npx hardhat test",
"lint-ts": "yarn eslint \"**/*.{js,ts}\" --quiet --fix",
"lint-sol": "yarn solhint \"contracts/**/*.sol\"",
"format-ts": "yarn prettier -w \"**/*.{ts, js, yml, json}\"",
"format-sol": "yarn prettier -w \"contracts/**/*.sol\"",
"fix-ts": "yarn lint-ts && yarn format-ts",
"fix-sol": "yarn lint-sol && yarn format-sol",
"fix": "yarn fix-ts && yarn fix-sol"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.2",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@openzeppelin/test-helpers": "^0.5.12",
"@typechain/ethers-v5": "^7.0.1",
"@typechain/hardhat": "^2.1.2",
"@types/chai": "^4.2.15",
"@types/mocha": "^8.2.1",
"@types/node": "^14.14.35",
"@typescript-eslint/eslint-plugin": "^4.18.0",
"@typescript-eslint/parser": "^4.28.2",
"chai": "^4.3.4",
"eslint": "^7.22.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-import": "^2.23.4",
"eth-sig-util": "^3.0.1",
"ethereum-waffle": "^3.0.0",
"ethereumjs-util": "^7.1.0",
"ethers": "^5.0.32",
"hardhat": "^2.4.3",
"husky": "^7.0.0",
"lint-staged": "^11.1.1",
"prettier": "^2.2.1",
"prettier-plugin-solidity": "^1.0.0-beta.14",
"solhint": "^3.3.6",
"ts-node": "^9.1.1",
"typechain": "^5.1.1",
"typescript": "^4.2.3"
},
"dependencies": {
"@openzeppelin/contracts": "^4.2.0"
}
}