-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.66 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 2.66 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
69
70
{
"name": "@thinkincoin/recoveryvault",
"version": "1.0.0-dev",
"description": "Fixed price redemption vault for depegged tokens on Harmony",
"homepage": "https://vault.thinkincoin.com",
"main": "main.js",
"scripts": {
"compile": "hardhat compile",
"test:unit": "vitest run --dir test/unit",
"test:watch": "vitest --dir test/unit",
"test:integration": "hardhat test test/integration/Integration.test.js test/integration/RecoveryVault.test.js",
"test": "yarn test:unit && yarn test:integration",
"deploy": "hardhat run scripts/deploy.js --network harmony",
"verify": "hardhat verify --network harmony",
"merkle": "node scripts/generateMerkle.js",
"set:merkle": "npx hardhat run scripts/setMerkleProof.js --network harmony",
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"snap:wl": "node scripts/snap-strategy-wl.js -i public/data/prehack_list.txt -c public/snap-cfg.json -wout public/snap-str.json -N 1666600000 -b latest -W 1 -C as-is -u https://raw.githubusercontent.com/mzfshark/RecoveryVault/refs/heads/development/public/snap-str.json"
},
"keywords": [
"Recovery Harmony"
],
"author": "mzfshark",
"license": "MIT",
"dependencies": {
"@nomicfoundation/hardhat-chai-matchers": "2.1.0",
"@nomicfoundation/hardhat-ethers": "3.1.0",
"@nomicfoundation/hardhat-network-helpers": "~1.1.0",
"@reduxjs/toolkit": "^2.8.2",
"@reown/appkit": "^1.8.1",
"@reown/appkit-adapter-ethers": "^1.8.1",
"@reown/appkit-common": "^1.8.1",
"@typechain/hardhat": "9.1.0",
"@types/chai": "5.2.2",
"@types/mocha": "10.0.10",
"@walletconnect/universal-provider": "^2.21.8",
"hardhat-gas-reporter": "2.3.0",
"keccak256": "^1.0.6",
"merkletreejs": "0.5.2",
"react": "^19.1.1",
"react-dom": "^19.1.1",
"react-google-recaptcha": "^3.1.0",
"react-icons": "^5.5.0",
"react-redux": "^9.2.0",
"react-router-dom": "^7.8.2",
"solidity-coverage": "0.8.16",
"ts-node": "10.9.2",
"vite": "^7.1.3",
"vitest": "3.2.4"
},
"devDependencies": {
"@nomicfoundation/hardhat-toolbox": "^3.0.0",
"@nomicfoundation/hardhat-verify": "^1.0.0",
"@openzeppelin/contracts": "^4.9.3",
"@typechain/ethers-v6": "^0.5.1",
"@types/node": "^20.11.30",
"@vitejs/plugin-react": "^5.0.1",
"chai": "^4.3.7",
"dotenv": "^16.3.1",
"ethers": "^6.15.0",
"hardhat": "^2.22.3",
"jsdom": "^26.1.0",
"mocha": "^10.2.0",
"typechain": "^8.3.1",
"typescript": "^5.4.5"
},
"packageManager": "[email protected]+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
}