-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.89 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 2.89 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "@axodus/neurons-token",
"version": "1.0.0",
"description": "Neurons ERC20 token with Proof-of-Knowledge minting and LayerZero bridge",
"main": "index.js",
"scripts": {
"dev": "cd landing-page && npm run dev",
"build": "npx hardhat compile",
"test": "npx hardhat test",
"test:gas": "REPORT_GAS=true npx hardhat test",
"test:coverage": "npx hardhat coverage",
"deploy:harmony": "npx hardhat run scripts/deploy-harmony.ts --network harmonyMainnet",
"deploy:harmony:testnet": "npx hardhat run scripts/deploy-harmony.ts --network harmonyTestnet",
"deploy:proxy": "npx hardhat run scripts/deploy-proxy.ts",
"deploy:pokminter:harmony": "npx hardhat run scripts/deploy-pokminter.ts --network harmonyMainnet",
"deploy:pokminter:harmony:testnet": "npx hardhat run scripts/deploy-pokminter.ts --network harmonyTestnet",
"verify:deployments": "npx hardhat run scripts/verify-from-deployments.ts",
"verify:harmony": "npx hardhat run scripts/verify-from-deployments.ts --network harmonyMainnet",
"verify:harmony:testnet": "npx hardhat run scripts/verify-from-deployments.ts --network harmonyTestnet",
"deploy:sepolia": "npx hardhat run scripts/deploy.ts --network sepolia",
"deploy:goerli": "npx hardhat run scripts/deploy.ts --network goerli",
"deploy:polygon-mumbai": "npx hardhat run scripts/deploy.ts --network polygonMumbai",
"deploy:bsc-testnet": "npx hardhat run scripts/deploy.ts --network bscTestnet",
"deploy:arbitrum-sepolia": "npx hardhat run scripts/deploy.ts --network arbitrumSepolia",
"deploy:harmony-testnet": "npx hardhat run scripts/deploy.ts --network harmonyTestnet",
"verify": "npx hardhat verify",
"size": "npx hardhat size-contracts",
"lint": "solhint 'contracts/**/*.sol'",
"format": "prettier --write 'contracts/**/*.sol'",
"clean": "npx hardhat clean"
},
"keywords": [
"ethereum",
"solidity",
"erc20",
"layerzero",
"proof-of-knowledge",
"oft",
"bridge"
],
"author": "Axodus",
"license": "MIT",
"devDependencies": {
"@nomicfoundation/hardhat-toolbox": "^4.0.0",
"@nomicfoundation/hardhat-verify": "^2.0.0",
"@typechain/ethers-v6": "^0.5.0",
"@typechain/hardhat": "^9.0.0",
"@types/chai": "^4.3.0",
"@types/mocha": "^10.0.0",
"@types/node": "^20.0.0",
"chai": "^4.3.0",
"ethers": "^6.4.0",
"hardhat": "^2.0.0",
"hardhat-contract-sizer": "^2.10.0",
"hardhat-gas-reporter": "^1.0.9",
"solidity-coverage": "^0.8.5",
"ts-node": "^10.9.0",
"typechain": "^8.3.0",
"typescript": "^5.0.0"
},
"dependencies": {
"@layerzerolabs/solidity-examples": "^1.1.0",
"@openzeppelin/contracts": "^5.4.0",
"dotenv": "^16.3.0",
"forge-std": "^1.1.2"
},
"packageManager": "[email protected]+sha512.34e538c329b5553014ca8e8f4535997f96180a1d0f614339357449935350d924e22f8614682191264ec33d1462ac21561aff97f6bb18065351c162c7e8f6de67"
}