We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 6188df9 + 291b4ac commit e4d6248Copy full SHA for e4d6248
package.json
@@ -1,10 +1,16 @@
1
{
2
"name": "hardhat-project",
3
"scripts": {
4
- "dev": "npx hardhat node",
5
- "compile": "npx hardhat compile",
6
- "test": "npx hardhat test",
7
- "clean": "npx hardhat clean"
+ "node": "hardhat node",
+ "compile": "hardhat compile",
+ "test": "hardhat test",
+ "test:coverage": "hardhat coverage",
8
+ "clean": "hardhat clean",
9
+ "dev": "hardhat node",
10
+ "web:dev": "cd web && npm run dev",
11
+ "web:build": "cd web && npm run build",
12
+ "web:start": "cd web && npm start",
13
+ "web:lint": "cd web && npm run lint"
14
},
15
"devDependencies": {
16
"@nomicfoundation/hardhat-toolbox": "^5.0.0",
@@ -15,4 +21,4 @@
21
"@radix-ui/react-separator": "^1.1.7",
22
"sonner": "^2.0.5"
17
23
}
18
-}
24
+}
0 commit comments