-
Notifications
You must be signed in to change notification settings - Fork 345
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.05 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 2.05 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
{
"name": "defillama",
"version": "1.0.0",
"private": true,
"homepage": "https://defillama.com",
"license": "GPL-3.0-or-later",
"sideEffects": false,
"scripts": {
"analyze": "bunx next experimental-analyze",
"dev": "bun run build:metadata && bunx next dev",
"build:metadata": "bun scripts/pullMetadata.js && bun scripts/generateRobots.js",
"build": "bun run build:metadata && bunx next build",
"start": "./scripts/prestart.sh & bunx next start",
"test": "vitest run",
"test:types": "tsc -p tsconfig.vitest.json --noEmit",
"format:check": "oxfmt --check",
"format": "oxfmt --write",
"lint": "oxlint",
"ts": "tsc --noEmit"
},
"dependencies": {
"@ariakit/react": "0.4.22",
"@dnd-kit/core": "6.3.1",
"@dnd-kit/modifiers": "9.0.0",
"@dnd-kit/sortable": "10.0.0",
"@marsidev/react-turnstile": "1.4.2",
"@rainbow-me/rainbowkit": "2.2.10",
"@stripe/react-stripe-js": "5.6.1",
"@stripe/stripe-js": "8.9.0",
"@tailwindcss/typography": "0.5.19",
"@tanstack/react-query": "5.90.21",
"@tanstack/react-query-devtools": "5.91.3",
"@tanstack/react-table": "8.21.3",
"@tanstack/react-virtual": "3.13.21",
"clsx": "2.1.1",
"dayjs": "1.11.19",
"echarts": "6.0.0",
"echarts-simple-transform": "1.0.0",
"expr-eval": "2.0.2",
"ioredis": "5.10.0",
"lodash": "4.17.23",
"match-sorter": "8.2.0",
"next": "16.2.0",
"nprogress": "0.2.0",
"pg-promise": "12.6.2",
"pocketbase": "0.26.8",
"react": "19.2.4",
"react-dom": "19.2.4",
"react-hot-toast": "2.6.0",
"react-markdown": "10.1.0",
"react-select": "5.10.2",
"rehype-raw": "7.0.0",
"remark-gfm": "4.0.1",
"textarea-caret": "3.1.0",
"viem": "2.42.1",
"wagmi": "2.19.5"
},
"devDependencies": {
"@tailwindcss/postcss": "4.2.1",
"@types/lodash": "4.17.24",
"@types/node": "25.3.5",
"@types/react": "19.2.14",
"babel-plugin-react-compiler": "1.0.0",
"oxfmt": "0.36.0",
"oxlint": "1.51.0",
"oxlint-tsgolint": "^0.16.0",
"postcss": "8.5.8",
"tailwindcss": "4.2.1",
"typescript": "5.9.3",
"vitest": "^4.1.0"
},
"overrides": {
"@types/react": "19.2.14"
}
}