-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
102 lines (102 loc) · 3.26 KB
/
Copy pathpackage.json
File metadata and controls
102 lines (102 loc) · 3.26 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
101
102
{
"name": "dappbooster",
"private": true,
"version": "2.6.0",
"type": "module",
"packageManager": "pnpm@12.4.2",
"engines": {
"node": ">=24.15.0"
},
"scripts": {
"build": "pnpm typecheck && vite build",
"dev": "vite",
"dev:watch": "pnpm routes:watch & vite",
"docs:build": "cd docs && vocs build",
"docs:dev": "cd docs && vocs dev",
"docs:preview": "cd docs && vocs preview",
"knip": "knip",
"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",
"typecheck": "tsc --noEmit --pretty",
"typedoc:build": "typedoc",
"wagmi-generate": "wagmi generate --config src/lib/wagmi/config.ts"
},
"dependencies": {
"@bootnodedev/db-subgraph": "^0.1.2",
"@chakra-ui/react": "^3.37.0",
"@emotion/react": "^11.14.0",
"@lifi/sdk": "^4.7.0",
"@lifi/sdk-provider-ethereum": "^4.1.0",
"@rainbow-me/rainbowkit": "^2.2.11",
"@reown/appkit": "^1.8.23",
"@reown/appkit-adapter-wagmi": "^1.8.23",
"@t3-oss/env-core": "^0.13.11",
"@tanstack/react-query": "^5.102.8",
"@tanstack/react-router": "^1.170.36",
"@tanstack/react-virtual": "^3.14.13",
"@uniswap/default-token-list": "^22.20.0",
"@vercel/analytics": "^2.0.1",
"@web3icons/react": "^4.1.22",
"buffer": "^6.0.3",
"connectkit": "^1.9.2",
"graphql": "^16.14.2",
"graphql-request": "^7.4.0",
"next-themes": "^0.4.6",
"porto": "^0.2.37",
"react": "19.3.0",
"react-dom": "19.3.0",
"react-error-boundary": "^6.1.5",
"react-jazzicon": "^1.0.4",
"react-number-format": "^5.4.5",
"use-debounce": "^10.1.1",
"viem": "^2.56.5",
"wagmi": "^2.19.5",
"zod": "^4.6.5"
},
"devDependencies": {
"@biomejs/biome": "2.5.13",
"@commitlint/cli": "^21.2.2",
"@commitlint/config-conventional": "^21.2.2",
"@graphql-codegen/cli": "^7.4.1",
"@graphql-codegen/client-preset": "^6.2.0",
"@graphql-typed-document-node/core": "^3.2.0",
"@parcel/watcher": "^2.6.0",
"@tanstack/react-query-devtools": "^5.102.8",
"@tanstack/react-router-devtools": "^1.167.2",
"@tanstack/router-cli": "^1.167.36",
"@tanstack/router-plugin": "^1.168.38",
"@testing-library/jest-dom": "^7.0.1",
"@testing-library/react": "^16.3.3",
"@testing-library/user-event": "^14.6.7",
"@types/react": "^19.3.0",
"@types/react-dom": "^19.3.0",
"@vitejs/plugin-react": "^6.1.1",
"@vitest/coverage-v8": "^5.0.1",
"@wagmi/cli": "^2.10.0",
"change-case": "^5.4.4",
"husky": "^9.1.7",
"jsdom": "^30.0.1",
"knip": "^6.35.1",
"lint-staged": "^17.5.1",
"typedoc": "^0.28.20",
"typedoc-github-theme": "^0.4.0",
"typedoc-plugin-inline-sources": "^1.3.0",
"typedoc-plugin-missing-exports": "^4.1.4",
"typedoc-plugin-rename-defaults": "^0.7.3",
"typescript": "^6.0.3",
"vite": "^8.3.0",
"vite-plugin-sitemap": "^0.8.2",
"vitest": "^5.0.1",
"vocs": "2.9.0",
"waku": "1.0.0-rc.0"
}
}