forked from CUIT-fenghuiyu/gas_morph
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 979 Bytes
/
Copy pathpackage.json
File metadata and controls
36 lines (36 loc) · 979 Bytes
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
{
"name": "gasmorph-hackathon",
"version": "1.0.0",
"description": "GasMorph - Intent-driven Gas Subsidy Protocol for Monad Hackathon",
"main": "index.js",
"scripts": {
"compile": "hardhat compile",
"deploy": "hardhat run scripts/deploy.ts --network localhost",
"test": "hardhat test",
"frontend": "cd frontend && npm start",
"build": "cd frontend && npm run build",
"chain": "hardhat node",
"start": "cd frontend && npm start",
"dev": "concurrently \"yarn chain\" \"yarn deploy\" \"yarn start\""
},
"keywords": [
"monad",
"erc4337",
"gas-subsidy",
"web3"
],
"author": "GasMorph Team",
"license": "MIT",
"devDependencies": {
"@nomicfoundation/hardhat-toolbox": "^4.0.0",
"@openzeppelin/contracts": "^5.0.0",
"@types/node": "^20.0.0",
"concurrently": "^8.2.2",
"hardhat": "^2.19.0",
"ts-node": "^10.9.2",
"typescript": "^5.0.0"
},
"dependencies": {
"ethers": "^6.8.0"
}
}