generated from nicobevilacqua/hardhat-solidity-typescript-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
68 lines (68 loc) · 2.8 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
60
61
62
63
64
65
66
67
68
{
"name": "capture-the-ether-hardhat",
"version": "0.0.0",
"main": "index.js",
"repository": "",
"author": "",
"license": "MIT",
"scripts": {
"test": "npx hardhat test",
"deploy-a-contract": "npx hardhat test ./test/01-DeployAContract.test.ts",
"call-me": "npx hardhat test ./test/02-CallMe.test.ts",
"choose-a-nickname": "npx hardhat test ./test/03-ChooseANickname.test.ts",
"guess-the-number": "npx hardhat test ./test/04-GuessTheNumber.test.ts",
"guess-the-secret-number": "npx hardhat test ./test/05-GuessTheSecretNumber.test.ts",
"guess-the-random-number": "npx hardhat test ./test/06-GuessTheRandomNumber.test.ts",
"guess-the-new-number": "npx hardhat test ./test/07-GuessTheNewNumber.test.ts",
"predict-the-future": "npx hardhat test ./test/08-PredictTheFuture.test.ts",
"predict-the-block-hash": "npx hardhat test ./test/09-PredictTheBlockHash.test.ts",
"token-sale": "npx hardhat test ./test/10-TokenSale.test.ts",
"token-whale": "npx hardhat test ./test/11-TokenWhale.test.ts",
"retirement-fund": "npx hardhat test ./test/12-RetirementFund.test.ts",
"mapping": "npx hardhat test ./test/13-Mapping.test.ts",
"donation": "npx hardhat test ./test/14-Donation.test.ts",
"fifty-years": "npx hardhat test ./test/15-FiftyYears.test.ts",
"fuzzy-identity": "npx hardhat test ./test/16-fuzzy-identity.test.ts",
"public-key": "npx hardhat test ./test/17-PublicKey.test.ts",
"assume-ownership": "npx hardhat test ./test/18-AssumeOwnership.test.ts",
"token-bank": "npx hardhat test ./test/19-TokenBank.test.ts"
},
"dependencies": {
"@ethersproject/abi": "^5.7.0",
"@ethersproject/abstract-signer": "^5.7.0",
"@ethersproject/bignumber": "^5.7.0",
"@nomicfoundation/hardhat-chai-matchers": "^1.0.3",
"@nomicfoundation/hardhat-network-helpers": "^1.0.4",
"@nomicfoundation/hardhat-toolbox": "^1.0.2",
"@nomiclabs/hardhat-ethers": "^2.1.1",
"@nomiclabs/hardhat-etherscan": "^3.1.0",
"@typechain/ethers-v5": "^10.1.0",
"@typechain/hardhat": "^6.1.2",
"hardhat": "^2.6.4",
"hardhat-watcher": "^2.1.1",
"ts-node": "^10.2.1",
"typechain": "^8.1.0",
"typescript": "^4.4.3"
},
"devDependencies": {
"@types/chai": "^4.2.21",
"@types/mocha": "^9.0.0",
"@types/node": "^16.9.1",
"chai": "^4.3.4",
"dotenv": "^10.0.0",
"eslint": "^7.29.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-promise": "^5.1.0",
"ethers": "^5.0.0",
"hardhat-gas-reporter": "^1.0.4",
"mocha": "^9.1.1",
"prettier": "^2.4.0",
"prettier-plugin-solidity": "^1.0.0-beta.13",
"solhint": "^3.3.6",
"solidity-coverage": "^0.7.16"
}
}