-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.42 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.42 KB
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
{
"name": "vaultguard",
"version": "1.0.0",
"description": "Decentralized bug bounty platform for protocols and security researchers",
"main": "index.js",
"scripts": {
"compile": "hardhat compile",
"test": "hardhat test",
"deploy:local": "hardhat run scripts/deploy.js --network localhost",
"deploy:sepolia": "hardhat run scripts/deploy.js --network sepolia",
"deploy:base": "hardhat run scripts/deploy.js --network baseSepolia",
"deploy:celo:alfajores": "hardhat run scripts/deploy.js --network celoAlfajores",
"deploy:celo:mainnet": "hardhat run scripts/deploy.js --network celo",
"deploy:base:sepolia": "hardhat run scripts/deploy.js --network baseSepolia",
"deploy:base:mainnet": "hardhat run scripts/deploy.js --network base",
"verify:celo:alfajores": "hardhat verify --network celoAlfajores",
"verify:celo:mainnet": "hardhat verify --network celo",
"verify:base:sepolia": "hardhat verify --network baseSepolia",
"verify:base:mainnet": "hardhat verify --network base"
},
"keywords": [
"solidity",
"celo",
"bug-bounty",
"security",
"vulnerability",
"decentralized",
"web3"
],
"author": "",
"license": "MIT",
"devDependencies": {
"@nomicfoundation/hardhat-toolbox": "^4.0.0",
"@nomicfoundation/hardhat-verify": "^2.0.0",
"dotenv": "^17.2.3",
"hardhat": "^2.19.0"
},
"dependencies": {
"@openzeppelin/contracts": "^5.0.0"
}
}