-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.6 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
{
"name": "blockchain_validator",
"version": "1.0.0",
"description": "This repo will be used to create batch script that is going to validade Blockchain Classes to see if users could deploy the correct contract on the testnets",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"deploy_mumbai": "npx hardhat deploy --network mumbai",
"validate_csv_sepolia": "npx hardhat run src/index.ts --network sepolia",
"validate_csv_fuji": "npx hardhat run src/index.ts --network fuji",
"validate_csv_mumbai": "npx hardhat run src/index.ts --network mumbai",
"validate_csv_localhost": "npx hardhat run src/index.ts --network localhost"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lucasarchangelo/blockchain_validator.git"
},
"keywords": [
"blockchain",
"validators",
"nodejs",
"solidity",
"hardhat"
],
"author": "Lucas Ramos Archangelo",
"license": "MIT",
"bugs": {
"url": "https://github.com/lucasarchangelo/blockchain_validator/issues"
},
"homepage": "https://github.com/lucasarchangelo/blockchain_validator#readme",
"devDependencies": {
"@chainlink/contracts": "^0.8.0",
"@chainlink/contracts-ccip": "^1.2.1",
"@nomicfoundation/hardhat-toolbox": "^4.0.0",
"@nomicfoundation/hardhat-verify": "^2.0.4",
"@openzeppelin/contracts": "4.6.0",
"csv-parse": "^5.5.5",
"csvtojson": "^2.0.10",
"dotenv": "^16.4.5",
"hardhat": "^2.21.0",
"hardhat-deploy": "^0.11.45",
"hardhat-deploy-ethers": "^0.4.1",
"json-2-csv": "^5.5.0",
"prettier": "^3.2.5"
}
}