-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 2 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": "contract-template-hardhat",
"version": "0.0.1",
"description": "description",
"private": true,
"scripts": {
"setup": "git config core.hooksPath .githooks",
"build": "hardhat clean && hardhat compile",
"compile": "hardhat compile",
"deploy": "hardhat run scripts/deploy.ts",
"ganache": "ganache-cli --accounts=10 --deterministic --defaultBalanceEther=1000000 --quiet",
"typecheck": "tsc -p . --noEmit",
"lint": "eslint --ext '.js,.ts' './**/*.{j,t}s'",
"fmt": "prettier --write './**/*.sol' './**/*.js' './**/*.ts' './**/*.json' './**/*.md'",
"test": "hardhat test",
"solhint": "solhint 'contracts/**/*.sol'",
"coverage": "yarn build && hardhat coverage",
"precommit": "yarn fmt && yarn solhint && yarn compile && yarn typecheck && yarn lint"
},
"license": "MIT",
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.2",
"@nomiclabs/hardhat-etherscan": "^2.1.2",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@openzeppelin/contracts": "^3.4.1",
"@typechain/ethers-v5": "^6.0.3",
"@types/chai": "^4.2.15",
"@types/mocha": "^8.2.1",
"@typescript-eslint/eslint-plugin": "^4.18.0",
"@typescript-eslint/parser": "^4.18.0",
"chai": "^4.3.4",
"eslint": "^7.22.0",
"eslint-config-prettier": "^8.1.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-promise": "^4.3.1",
"eslint-plugin-standard": "^5.0.0",
"ethereum-waffle": "^3.3.0",
"ethers": "^5.0.32",
"fs-extra": "^9.1.0",
"ganache-cli": "^6.12.2",
"hardhat": "^2.1.1",
"hardhat-typechain": "^0.3.5",
"mocha": "^8.3.2",
"prettier": "^2.2.1",
"prettier-plugin-solidity": "^1.0.0-beta.6",
"solc": "0.7.6",
"solhint": "^3.3.2",
"solidity-coverage": "^0.7.16",
"ts-generator": "^0.1.1",
"ts-mocha": "^8.0.0",
"ts-node": "^9.1.1",
"typechain": "^4.0.3",
"typescript": "^4.2.3"
}
}