Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 11 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,16 @@
{
"name": "hardhat-project",
"scripts": {
"dev": "npx hardhat node",
"compile": "npx hardhat compile",
"test": "npx hardhat test",
"clean": "npx hardhat clean"
"node": "hardhat node",
"compile": "hardhat compile",
"test": "hardhat test",
"test:coverage": "hardhat coverage",
"clean": "hardhat clean",
"dev": "hardhat node",
"web:dev": "cd web && npm run dev",
"web:build": "cd web && npm run build",
"web:start": "cd web && npm start",
"web:lint": "cd web && npm run lint"
},
"devDependencies": {
"@nomicfoundation/hardhat-toolbox": "^5.0.0",
Expand All @@ -15,4 +21,4 @@
"@radix-ui/react-separator": "^1.1.7",
"sonner": "^2.0.5"
}
}
}