-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.23 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.23 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
42
43
44
45
46
{
"name": "block-chat",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev --turbopack",
"build": "next build",
"start": "next start",
"lint": "next lint",
"build-contracts": "rm -rf artifacts && npx hardhat clean && npx hardhat compile",
"deploy": "node src/app/interchain/runDeploy.jsx"
},
"dependencies": {
"@axelar-network/axelar-gmp-sdk-solidity": "^6.0.0",
"@axelar-network/axelarjs-sdk": "^0.15.0",
"@rainbow-me/rainbowkit": "^2.2.4",
"@tanstack/react-query": "^5.74.4",
"drand-client": "^1.3.0-rc2",
"ethers": "^6.13.5",
"fs-extra": "^11.3.0",
"next": "15.3.1",
"path": "^0.12.7",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-spinners": "^0.17.0",
"react-textarea-autosize": "^8.5.9",
"react-type-animation": "^3.2.0",
"tlock-js": "^0.9.0",
"viem": "^2.23.9",
"wagmi": "^2.14.15"
},
"devDependencies": {
"@eslint/eslintrc": "^3",
"@nomicfoundation/hardhat-toolbox": "^5.0.0",
"eslint": "^9",
"eslint-config-next": "15.3.1",
"hardhat": "^2.23.0",
"hardhat-gas-reporter": "^1.0.8",
"solhint": "^3.3.7",
"solidity-coverage": "^0.8.2"
},
"browser": {
"fs": false,
"crypto": false
}
}