-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.05 KB
/
Copy pathpackage.json
File metadata and controls
41 lines (41 loc) · 1.05 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
{
"name": "web3comu-portal",
"version": "0.1.0",
"private": true,
"type": "module",
"engines": {
"node": ">=24"
},
"scripts": {
"dev": "next dev -H 0.0.0.0",
"build": "next build",
"start": "next start -H 0.0.0.0",
"typecheck": "tsc --noEmit",
"contracts:compile": "hardhat compile",
"contracts:test": "hardhat test",
"deploy:bmt:minato": "hardhat --build-profile production run scripts/deploy-bmt.ts --network minato"
},
"dependencies": {
"@reown/appkit": "^1.8.21",
"@reown/appkit-adapter-wagmi": "^1.8.21",
"@tanstack/react-query": "^5.101.0",
"next": "^15.3.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"viem": "^2.22.0",
"wagmi": "^3.6.17"
},
"overrides": {
"postcss": "^8.5.10",
"ws": "^8.20.2"
},
"devDependencies": {
"@nomicfoundation/hardhat-toolbox-viem": "^5.0.7",
"@openzeppelin/contracts": "^5.6.1",
"@types/node": "^24.0.0",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"hardhat": "^3.9.0",
"typescript": "^5.7.0"
}
}