-
Notifications
You must be signed in to change notification settings - Fork 88
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.04 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.04 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
{
"name": "berachain-rainbowkit",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"build": "tsc && vite build",
"dev": "vite",
"lint": "echo 'No lint script defined for this package'",
"lint:fix": "eslint src/ --fix",
"format": "prettier --write \"src/**/*.{ts,tsx}\"",
"test": "jest",
"clean": "rm -rf .turbo && rm -rf node_modules && rm -rf dist",
"preview": "vite preview"
},
"dependencies": {
"@rainbow-me/rainbowkit": "^2.0.5",
"buffer": "^6.0.3",
"ethers": "^6.12.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"wagmi": "^2.5.22"
},
"devDependencies": {
"@types/jest": "^29.5.0",
"@types/node": "^20.0.0",
"jest": "^29.5.0",
"prettier": "^3.0.0",
"tsup": "^8.0.0",
"typescript": "^5.2.2",
"@types/react": "^18.2.66",
"@types/react-dom": "^18.2.22",
"@vitejs/plugin-react": "^4.2.1",
"eslint": "^8.57.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.6",
"vite": "^5.4.19"
}
}