-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.44 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 2.44 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
71
72
{
"name": "voidtx",
"version": "1.0.0",
"description": "VoidTx - Batch Payment System on Monad Testnet",
"main": "index.js",
"scripts": {
"dev": "vite",
"dev:frontend": "vite",
"dev:backend": "node backend/server.js",
"dev:full": "concurrently \"npm run dev:backend\" \"npm run dev:frontend\"",
"build": "vite build",
"preview": "vite preview",
"verify-backend": "node scripts/verify-backend.js",
"verify-setup": "node scripts/verifySetup.js",
"verify-integration": "node scripts/verify-integration.js",
"compile": "hardhat compile",
"test": "hardhat test",
"deploy": "hardhat run scripts/deploy.js --network sepolia",
"deploy-monad": "hardhat run scripts/deploy.js --network monadTestnet",
"deploy-local": "hardhat run scripts/deploy.js --network localhost",
"node": "hardhat node",
"backend": "node backend/server.js",
"check-balance": "hardhat run scripts/checkBalance.js --network sepolia",
"check-balance-monad": "hardhat run scripts/checkBalance.js --network monadTestnet",
"test-transaction": "hardhat run scripts/testTransaction3Recipients.js --network sepolia",
"test-transaction-monad": "hardhat run scripts/testTransaction.js --network monadTestnet",
"events": "node backend/eventReader.js"
},
"keywords": [
"ethereum",
"monad",
"batch-payments",
"web3"
],
"author": "VoidTx Team",
"license": "MIT",
"devDependencies": {
"@nomicfoundation/hardhat-chai-matchers": "^2.0.0",
"@nomicfoundation/hardhat-ethers": "^3.0.0",
"@nomicfoundation/hardhat-network-helpers": "^1.0.0",
"@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.2.0",
"@types/mocha": ">=9.1.0",
"@vitejs/plugin-react": "^5.1.2",
"autoprefixer": "^10.4.22",
"chai": "^4.2.0",
"hardhat": "^2.27.2",
"hardhat-gas-reporter": "^1.0.8",
"postcss": "^8.5.6",
"solidity-coverage": "^0.8.0",
"tailwindcss": "^3.4.19",
"typechain": "^8.3.0",
"vite": "^7.2.7"
},
"dependencies": {
"concurrently": "^8.2.2",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"ethers": "^6.16.0",
"express": "^4.18.2",
"framer-motion": "^12.23.26",
"permissionless": "^0.1.49",
"qrcode": "^1.5.3",
"qrcode.react": "^4.1.0",
"react": "^19.2.3",
"react-dom": "^19.2.3",
"viem": "^2.17.11"
}
}