-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
100 lines (100 loc) · 3.1 KB
/
package.json
File metadata and controls
100 lines (100 loc) · 3.1 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "dappbooster",
"private": true,
"version": "2.0.4",
"type": "module",
"scripts": {
"build": "tsc --noEmit --pretty && vite build",
"dev": "vite",
"dev:watch": "routes:watch & vite",
"docs:build": "vocs build",
"docs:dev": "vocs dev",
"docs:preview": "vocs preview",
"typedoc:build": "typedoc",
"lint": "pnpm biome check",
"lint:fix": "pnpm biome check --write",
"postinstall": "pnpm wagmi-generate",
"prepare": "husky",
"preview": "vite preview",
"routes:generate": "tsr generate",
"routes:watch": "tsr watch",
"subgraph-codegen": "graphql-codegen --config ./src/subgraphs/codegen.ts",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"test:watch": "vitest",
"wagmi-generate": "wagmi generate --config src/lib/wagmi/config.ts"
},
"dependencies": {
"@bootnodedev/db-subgraph": "^0.1.2",
"@chakra-ui/react": "^3.34.0",
"@emotion/react": "^11.14.0",
"@lifi/sdk": "^3.16.3",
"@rainbow-me/rainbowkit": "^2.2.9",
"@reown/appkit": "^1.8.19",
"@reown/appkit-adapter-wagmi": "^1.8.19",
"@t3-oss/env-core": "^0.13.11",
"@tanstack/react-query": "^5.96.1",
"@tanstack/react-router": "^1.168.10",
"@tanstack/react-virtual": "^3.13.23",
"@uniswap/default-token-list": "^18.13.0",
"@vercel/analytics": "^2.0.1",
"@web3icons/core": "^4.0.13",
"@web3icons/react": "^4.0.13",
"buffer": "^6.0.3",
"connectkit": "^1.9.2",
"graphql": "^16.13.2",
"graphql-request": "^7.1.2",
"next-themes": "^0.4.6",
"porto": "^0.2.28",
"react": "19.2.4",
"react-dom": "19.2.4",
"react-error-boundary": "^6.0.0",
"react-jazzicon": "^1.0.4",
"react-number-format": "^5.4.5",
"use-debounce": "^10.1.1",
"viem": "^2.47.6",
"wagmi": "^2.17.5",
"zod": "^4"
},
"devDependencies": {
"@biomejs/biome": "2.4.10",
"@commitlint/cli": "^20.5.0",
"@commitlint/config-conventional": "^20.5.0",
"@graphql-codegen/cli": "^6",
"@graphql-typed-document-node/core": "^3.2.0",
"@parcel/watcher": "^2.5.1",
"@tanstack/react-query-devtools": "^5.96.1",
"@tanstack/react-router-devtools": "^1.166.11",
"@tanstack/router-cli": "^1.166.25",
"@tanstack/router-plugin": "^1.167.12",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"@types/react": "^19.1.3",
"@types/react-dom": "^19.1.3",
"@vitejs/plugin-react": "^6.0.1",
"@vitest/coverage-v8": "^4.1.2",
"@wagmi/cli": "^2.3.1",
"change-case": "^5.4.4",
"husky": "^9.1.7",
"jsdom": "^29.0.1",
"lint-staged": "^16.4.0",
"ts-node": "^10.9.2",
"typedoc": "^0.28.18",
"typedoc-github-theme": "^0.4.0",
"typedoc-plugin-inline-sources": "^1.3.0",
"typedoc-plugin-missing-exports": "^4.0.0",
"typedoc-plugin-rename-defaults": "^0.7.3",
"typescript": "^6",
"vite": "^8",
"vite-plugin-sitemap": "^0.8.2",
"vitest": "^4.1.2",
"vocs": "1.4.1"
},
"packageManager": "pnpm@10.33.0",
"pnpm": {
"overrides": {
"@graphql-codegen/cli": "^6"
}
}
}