-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.65 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.65 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
47
48
49
50
51
52
53
54
55
56
57
{
"name": "rise-dash",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev --turbopack",
"build": "next build",
"start": "next start",
"lint": "next lint",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"compile:contract": "npx hardhat compile",
"test:contract": "npx hardhat test",
"deploy:clan": "hardhat run scripts/deploy-clan-registry.js",
"deploy:clan:rise": "hardhat run --network riseTestnet scripts/deploy-clan-registry.js"
},
"dependencies": {
"@openzeppelin/contracts": "^5.4.0",
"@rainbow-me/rainbowkit": "^2.2.8",
"@rainbow-me/rainbowkit-siwe-next-auth": "^0.5.0",
"@tanstack/react-query": "^5.81.5",
"@tanstack/react-table": "^8.21.3",
"clsx": "^2.1.1",
"ethers": "^6.15.0",
"next": "15.3.5",
"next-auth": "^4.24.11",
"next-intl": "^4.3.4",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"siwe": "^3.0.0",
"tailwind-merge": "^3.3.1",
"viem": "^2.31.7",
"wagmi": "^2.15.6",
"zustand": "^5.0.6"
},
"devDependencies": {
"@eslint/eslintrc": "^3",
"@nomicfoundation/hardhat-toolbox": "^4.0.0",
"@nomicfoundation/hardhat-verify": "^2.0.14",
"@tailwindcss/postcss": "^4",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.3.0",
"@types/jest": "^30.0.0",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"dotenv": "^16.6.1",
"eslint": "^9",
"eslint-config-next": "15.3.5",
"hardhat": "^2.25.0",
"jest": "^30.0.4",
"jest-environment-jsdom": "^30.0.4",
"tailwindcss": "^4",
"typescript": "^5"
}
}