-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·58 lines (58 loc) · 1.47 KB
/
package.json
File metadata and controls
executable file
·58 lines (58 loc) · 1.47 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
58
{
"name": "typpo-rush",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"lint:fix": "eslint src --fix && pnpm format",
"typecheck": "tsc --noEmit --incremental false",
"format": "prettier -w .",
"format:check": "prettier -c ."
},
"dependencies": {
"@rainbow-me/rainbowkit": "^2.1.5",
"@rainbow-me/rainbowkit-siwe-next-auth": "^0.4.1",
"@tanstack/react-query": "^5.54.1",
"ethers": "^5",
"install": "^0.13.0",
"next": "14.2.6",
"next-auth": "^4.24.7",
"npm": "^10.8.3",
"react": "^18",
"react-dom": "^18",
"react-icons": "^5.3.0",
"sharp": "^0.33.5",
"siwe": "^2",
"viem": "2.x",
"wagmi": "^2.12.8"
},
"devDependencies": {
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"@typescript-eslint/eslint-plugin": "8.2.0",
"@typescript-eslint/parser": "8.0.0",
"daisyui": "^4.12.10",
"eslint": "^8",
"eslint-config-next": "14.2.6",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-unused-imports": "^4.1.3",
"postcss": "^8",
"prettier": "^3.3.3",
"tailwindcss": "^3.4.1",
"typescript": "^5"
},
"lint-staged": {
"**/*.{js,jsx,ts,tsx}": [
"eslint --max-warning=0",
"prettier -w"
],
"**/*.{json,css,scss,md,webmanifest}": [
"prettier -w"
]
}
}