-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
executable file
·43 lines (43 loc) · 1.15 KB
/
package.json
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
42
43
{
"name": "clawmate",
"version": "1.0.0",
"scripts": {
"web:dev": "next dev",
"web:build": "next build",
"web:start": "next start",
"web:lint": "next lint",
"contracts:compile": "hardhat compile",
"contracts:deploy": "hardhat run scripts/deploy.js --network caldera",
"contracts:write": "hardhat run scripts/write.js --network caldera",
"contracts:read": "hardhat run scripts/read.js --network caldera",
"contracts:nft": "hardhat run scripts/nft.js --network caldera"
},
"dependencies": {
"@ant-design/cssinjs": "^1.18.0-alpha.0",
"@nomicfoundation/hardhat-toolbox": "^4.0.0",
"@openzeppelin/contracts": "^5.0.0",
"@web3modal/wagmi": "^3.3.2",
"antd": "^5.11.1",
"dotenv": "^16.3.1",
"next": "14.0.2",
"react": "^18",
"react-dom": "^18",
"react-icons": "^4.11.0",
"rxjs": "^7.8.1",
"swr": "^2.2.4",
"usehooks-ts": "^2.9.1",
"viem": "^1.19.3",
"wagmi": "^1.4.7"
},
"devDependencies": {
"@svgr/webpack": "^8.1.0",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"eslint": "^8",
"eslint-config-next": "14.0.2",
"hardhat": "^2.19.1",
"prettier": "^3.1.0",
"typescript": "^5"
}
}