-
-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathpackage.json
More file actions
24 lines (24 loc) · 640 Bytes
/
package.json
File metadata and controls
24 lines (24 loc) · 640 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
{
"name": "hardhat-project",
"scripts": {
"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",
"hardhat": "^2.22.17"
},
"dependencies": {
"@openzeppelin/contracts": "^5.1.0",
"@radix-ui/react-separator": "^1.1.7",
"sonner": "^2.0.5"
}
}