-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.93 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.93 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
42
43
44
45
46
47
48
49
{
"name": "depin-scanner-contracts",
"version": "1.0.0",
"description": "DePIN Scanner upgradeable smart contracts",
"main": "index.js",
{
"scripts": {
"compile": "hardhat compile",
"test": "hardhat test",
"deploy:implementation": "hardhat run scripts/deployment/01-deploy-implementation.js --network",
"deploy:factory": "hardhat run scripts/deployment/02-deploy-factory.js --network",
"deploy:proxy": "hardhat run scripts/deployment/03-deploy-proxy.js --network",
"deploy:all": "npm run deploy:implementation && npm run deploy:factory && npm run deploy:proxy",
"upgrade": "hardhat run scripts/upgrade.js --network",
"upgrade:validate": "hardhat run scripts/upgrades/validate-upgrade.js --network",
"verify": "hardhat run scripts/deployment/04-verify-contracts.js --network",
"versions": "hardhat run scripts/upgrades/list-versions.js",
"status": "hardhat run scripts/utilities/check-status.js --network",
"test-contract": "hardhat run scripts/utilities/test-contract.js --network",
"diagnose": "hardhat run scripts/utilities/diagnose-upgrade.js --network",
"setup:publishers": "hardhat run scripts/management/set-publishers.js --network",
"setup:moderators": "hardhat run scripts/management/set-moderators.js --network",
"pause": "hardhat run scripts/utilities/emergency-pause.js --network",
"clean": "hardhat clean && rm -rf typechain-types && rm -rf cache"
}
},
"keywords": [
"depin",
"blockchain",
"scanner",
"upgradeable",
"zksync"
],
"author": "DePIN Scanner Team",
"license": "MIT",
"devDependencies": {
"@nomicfoundation/hardhat-toolbox": "^4.0.0",
"@openzeppelin/hardhat-upgrades": "^3.0.0",
"hardhat": "^2.19.0",
"dotenv": "^16.3.0"
},
"dependencies": {
"@openzeppelin/contracts": "^5.0.0",
"@openzeppelin/contracts-upgradeable": "^5.0.0"
},
"engines": {
"node": ">=16.0.0"
}
}