forked from DefiLlama/defillama-app
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.88 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.88 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
{
"name": "defillama",
"sideEffects": false,
"version": "1.0.0",
"private": true,
"homepage": "https://defillama.com",
"license": "GPL-3.0-or-later",
"type": "module",
"scripts": {
"analyze": "ANALYZE=true yarn build",
"dev": "yarn run build:metadata && next dev",
"build:metadata": "node scripts/pullMetadata.js",
"build": "yarn run build:metadata && next build",
"start": "./scripts/prestart.sh & next start",
"format": "prettier --write .",
"lint": "next lint",
"ts": "tsc --noEmit"
},
"dependencies": {
"@ariakit/react": "0.4.16",
"@dnd-kit/core": "6.0.8",
"@dnd-kit/sortable": "7.0.2",
"@marsidev/react-turnstile": "^1.1.0",
"@meilisearch/instant-meilisearch": "^0.27.0",
"@rainbow-me/rainbowkit": "2.2.1",
"@tanstack/react-query": "5.61.3",
"@tanstack/react-query-devtools": "5.61.3",
"@tanstack/react-table": "8.20.5",
"@tanstack/react-virtual": "3.10.9",
"clsx": "^2.1.1",
"colord": "2.9.3",
"dayjs": "1.11.3",
"echarts": "5.6.0",
"echarts-simple-transform": "1.0.0",
"expr-eval": "^2.0.2",
"fathom-client": "3.4.1",
"ioredis": "5.3.2",
"lodash": "4.17.21",
"match-sorter": "8.0.0",
"next": "^15.3.4",
"nprogress": "0.2.0",
"pocketbase": "0.25.2",
"polished": "4.2.2",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"react-hot-toast": "2.4.1",
"react-instantsearch": "^7.16.0",
"react-intersection-observer": "9.2.2",
"react-markdown": "^10.1.0",
"react-select": "5.3.2",
"tailwind-merge": "^3.3.1",
"viem": "2.21.57",
"wagmi": "2.14.6"
},
"devDependencies": {
"@next/bundle-analyzer": "^15.4.2",
"@tailwindcss/postcss": "^4.1.11",
"@types/lodash": "4.14.198",
"@types/node": "17.0.8",
"@types/react": "^19.1.8",
"eslint": "^9.30.1",
"eslint-config-next": "^15.3.4",
"eslint-config-prettier": "8.3.0",
"postcss": "^8.5.6",
"prettier": "2.5.1",
"tailwindcss": "^4.1.11",
"typescript": "^5.8.3"
}
}