-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.25 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
{
"name": "blockchain-playground",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"lint": "solhint 'contracts/**/*.sol'",
"lint:fix": "solhint 'contracts/**/*.sol' --fix",
"format": "prettier '**/*.{js,ts,sol}' --check",
"format:fix": "prettier '**/*.{js,ts,sol}' --write",
"coverage": "hardhat coverage --solcoverjs ./.solcover.js",
"test": "hardhat test",
"compile": "hardhat compile",
"clean": "hardhat clean",
"help": "hardhat help",
"accounts": "hardhat accounts",
"deploy:localhost:simple-storage-vanilla": "npx ts-node scripts/b-simple-storage/deploy-vanilla-ethers.ts",
"deploy:sepolia:simple-storage": "hardhat run scripts/b-simple-storage/deploy.ts --network sepolia"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@chainlink/contracts": "^0.6.1",
"@nomicfoundation/hardhat-toolbox": "^3.0.0",
"@nomiclabs/hardhat-ethers": "npm:hardhat-deploy-ethers@^0.4.1",
"hardhat": "^2.16.1",
"hardhat-deploy": "^0.11.34",
"prettier": "^3.0.0",
"prettier-plugin-solidity": "^1.1.3",
"solhint": "^3.4.1",
"ts-node": "^10.9.1",
"typescript": "^5.1.6"
},
"dependencies": {
"dotenv": "^16.3.1",
"ethers": "^6.7.0"
}
}