forked from CoverMax-DeFi/CoverVault-ETHGlobal-Cannes
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 2.38 KB
/
Copy pathpackage.json
File metadata and controls
53 lines (53 loc) · 2.38 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
{
"name": "CoverMax",
"version": "1.0.0",
"description": "CoverMax - A decentralized insurance protocol",
"main": "hardhat.config.ts",
"scripts": {
"compile": "npx hardhat compile",
"test": "npx hardhat test",
"deploy": "echo 'y' | npx hardhat ignition deploy ignition/modules/RiskToken.ts",
"deploy:localhost": "echo 'y' | npx hardhat ignition deploy ignition/modules/RiskToken.ts --network localhost",
"deploy:flow-testnet": "echo 'y' | npx hardhat ignition deploy ignition/modules/RiskToken.ts --network flowTestnet",
"deploy:hedera-testnet": "echo 'y' | npx hardhat ignition deploy ignition/modules/RiskToken.ts --network hederaTestnet",
"deploy:mantle-testnet": "echo 'y' | npx hardhat ignition deploy ignition/modules/RiskToken.ts --network mantleTestnet",
"deploy:xrpl-testnet": "echo 'y' | npx hardhat ignition deploy ignition/modules/RiskToken.ts --network xrplTestnet",
"deploy:moonbeam-testnet": "echo 'y' | npx hardhat ignition deploy ignition/modules/RiskTokenSequential.ts --network moonbeamTestnet",
"node": "npx hardhat node",
"clean": "npx hardhat clean",
"coverage": "npx hardhat coverage",
"size": "npx hardhat size-contracts",
"console": "npx hardhat console",
"console:flow-testnet": "npx hardhat console --network flowTestnet",
"console:moonbeam-testnet": "npx hardhat console --network moonbeamTestnet",
"verify:flow-testnet": "npx hardhat verify --network flowTestnet",
"verify:flow-all": "node scripts/verify-flow-contracts.js",
"verify:xrpl-all": "node scripts/verify-xrpl-contracts.js",
"verify:moonbeam-all": "node scripts/verify-moonbeam-contracts.js",
"update-frontend-config": "ts-node scripts/update-frontend-config.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zalatar242/CoverMax.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"type": "commonjs",
"bugs": {
"url": "https://github.com/zalatar242/CoverMax/issues"
},
"homepage": "https://github.com/zalatar242/CoverMax#readme",
"devDependencies": {
"@nomicfoundation/hardhat-ignition-ethers": "^0.15.14",
"@nomicfoundation/hardhat-toolbox": "^6.0.0",
"@nomicfoundation/hardhat-verify": "^2.0.14",
"@onflow/fcl": "^1.19.0",
"@onflow/flow-cadut": "^0.2.0",
"dotenv": "^17.0.1",
"hardhat": "^2.25.0"
},
"dependencies": {
"@openzeppelin/contracts": "^5.3.0"
}
}