generated from nicobevilacqua/hardhat-solidity-typescript-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 2.09 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
{
"name": "",
"version": "0.0.0",
"main": "index.js",
"repository": "",
"author": "",
"license": "MIT",
"scripts": {
"test": "npx hardhat test",
"private-data": "npx hardhat test ./test/01-PrivateData.test.ts",
"wallet": "npx hardhat test ./test/02-Wallet.test.ts",
"car-market": "npx hardhat test ./test/03-CarMarket.test.ts",
"vending-machine": "npx hardhat test ./test/04-VendingMachine.test.ts",
"ethernaut-dao-token": "npx hardhat test ./test/05-EthernautDAOToken.test.ts",
"hackable": "npx hardhat test ./test/06-Hackable.test.ts",
"switch": "npx hardhat test ./test/07-Switch.test.ts",
"vulnerable-nft": "npx hardhat test ./test/08-VulnerableNFT.test.ts",
"vault": "npx hardhat test ./test/09-Vault.test.ts",
"staking": "npx hardhat test ./test/10-Staking.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",
"@openzeppelin/contracts": "^4.7.3",
"@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"
}
}