-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 950 Bytes
/
Copy pathpackage.json
File metadata and controls
30 lines (30 loc) · 950 Bytes
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
{
"name": "invincible-faucet",
"version": "1.0.0",
"private": true,
"scripts": {
"compile": "npx hardhat compile",
"test": "npx hardhat test",
"coverage": "npx hardhat coverage",
"deploy:local": "npx hardhat node & npx hardhat run scripts/deploy.ts --network localhost",
"deploy:lisk-sepolia": "npx hardhat run scripts/deploy.ts --network lisk-sepolia",
"typecheck": "tsc --noEmit"
},
"devDependencies": {
"@nomicfoundation/hardhat-chai-matchers": "^1.0.6",
"@nomicfoundation/hardhat-verify": "^2.1.3",
"@nomiclabs/hardhat-ethers": "^2.2.3",
"@openzeppelin/contracts": "^4.9.6",
"@typechain/ethers-v5": "^10.2.1",
"@typechain/hardhat": "^6.1.5",
"@types/chai": "^4.3.14",
"@types/mocha": "^10.0.6",
"chai": "^4.4.1",
"dotenv": "^16.4.5",
"ethers": "^5.7.2",
"hardhat": "^2.22.3",
"ts-node": "^10.9.2",
"typechain": "^8.3.2",
"typescript": "^5.4.5"
}
}