-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 2.52 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 2.52 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
{
"name": "hashfi",
"private": true,
"version": "1.0.0",
"type": "module",
"scripts": {
"dev": "vite --mode production",
"dev:local": "vite --mode localnet",
"dev:dev": "vite --mode development",
"build": "npx hardhat compile && vue-tsc -b && vite build --mode production",
"build:dev" : "npx hardhat compile && vue-tsc -b && vite build --mode development",
"preview": "vite preview --mode production",
"preview:dev": "vite preview --mode development",
"testnet": "npx tsx scripts/start-auto-testnet.ts",
"testnet:dev": "npx tsx scripts/start-auto-testnet.ts && npx tsx -e \"setTimeout(()=>{},1000)\" && npm run dev:local",
"stop": "npx tsx scripts/stop-testnet.ts",
"time": "npx tsx scripts/time-jump.ts",
"check:balance": "npx tsx scripts/check-balance.ts",
"check:size": "node check-bytecode.cjs",
"deploy:bsct": "npx hardhat ignition deploy ignition/modules/HashFiBscTestnet.ts --network bscTestnet",
"deploy:bsc": "npx hardhat ignition deploy ignition/modules/HashFiBscMainnet.ts --network bscMainnet",
"deploy:bsc:migrate": "npx hardhat ignition deploy ignition/modules/HashFiBscMigrate.ts --network bscMainnet",
"deploy:bsc:raw": "npx tsx scripts/deploy-bsc-raw.ts",
"export:data": "npx tsx scripts/exportData.ts",
"export:genesis": "npx tsx scripts/exportGenesisDeposits.ts",
"export:balances": "npx tsx scripts/export-balances.ts",
"distribute": "npx tsx scripts/distribute-tokens.ts",
"airdrop": "npx tsx scripts/airdrop.ts",
"batch-transfer": "npx tsx scripts/batch-transfer.ts"
},
"dependencies": {
"@openzeppelin/contracts": "^5.4.0",
"@reown/appkit": "^1.8.15",
"@reown/appkit-adapter-wagmi": "^1.8.15",
"@tailwindcss/vite": "^4.1.18",
"@tanstack/vue-query": "^5.92.1",
"@uniswap/v2-core": "^1.0.1",
"@uniswap/v2-periphery": "^1.1.0-beta.0",
"@wagmi/vue": "^0.4.3",
"@web3modal/wagmi": "^5.1.11",
"marked": "^17.0.1",
"pinia": "^3.0.4",
"tailwindcss": "^4.1.18",
"viem": "^2.43.3",
"vue": "^3.5.26",
"vue-i18n": "^11.2.7",
"vue-router": "^4.6.4",
"wagmi": "^3.1.0"
},
"devDependencies": {
"@nomicfoundation/hardhat-ignition": "^3.0.6",
"@nomicfoundation/hardhat-toolbox-viem": "^5.0.1",
"@types/node": "^25.0.3",
"@vitejs/plugin-vue": "^6.0.3",
"@vue/tsconfig": "^0.8.1",
"dotenv": "^17.2.3",
"hardhat": "^3.1.0",
"tsx": "^4.21.0",
"typescript": "~5.9.3",
"vite": "^7.3.0",
"vite-plugin-vue-devtools": "^8.0.5",
"vue-tsc": "^3.2.1"
}
}