Skip to content

Commit 3801d26

Browse files
authored
feat: Add package.json with Base DeFi dependencies
- Added comprehensive package.json for Base ecosystem analytics - Included Next.js, React, and TypeScript setup - Added Web3 libraries (ethers, web3) for Base blockchain interaction - Included data visualization libraries (recharts) - Added styling with Tailwind CSS and Headless UI - Configured scripts for development, build, and analysis
1 parent 8a12c0a commit 3801d26

1 file changed

Lines changed: 61 additions & 0 deletions

File tree

package.json

Lines changed: 61 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,61 @@
1+
{
2+
"name": "base-ecosystem-tracker",
3+
"version": "1.0.0",
4+
"description": "A comprehensive analytics dashboard for tracking Base ecosystem DeFi protocols, TVL metrics, yield farming opportunities, and protocol performance across the Base blockchain",
5+
"main": "src/index.js",
6+
"scripts": {
7+
"dev": "next dev",
8+
"build": "next build",
9+
"start": "next start",
10+
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
11+
"test": "jest",
12+
"analyze": "node scripts/analyze-protocols.js"
13+
},
14+
"keywords": [
15+
"base",
16+
"defi",
17+
"analytics",
18+
"tvl",
19+
"yield-farming",
20+
"blockchain",
21+
"ethereum",
22+
"l2",
23+
"coinbase"
24+
],
25+
"author": "wearedood",
26+
"license": "MIT",
27+
"dependencies": {
28+
"next": "^14.0.0",
29+
"react": "^18.2.0",
30+
"react-dom": "^18.2.0",
31+
"ethers": "^6.8.0",
32+
"web3": "^4.2.0",
33+
"axios": "^1.6.0",
34+
"recharts": "^2.8.0",
35+
"tailwindcss": "^3.3.0",
36+
"@headlessui/react": "^1.7.0",
37+
"@heroicons/react": "^2.0.0",
38+
"date-fns": "^2.30.0",
39+
"lodash": "^4.17.21",
40+
"numeral": "^2.0.6"
41+
},
42+
"devDependencies": {
43+
"@types/node": "^20.8.0",
44+
"@types/react": "^18.2.0",
45+
"@types/react-dom": "^18.2.0",
46+
"typescript": "^5.2.0",
47+
"eslint": "^8.52.0",
48+
"eslint-config-next": "^14.0.0",
49+
"jest": "^29.7.0",
50+
"autoprefixer": "^10.4.0",
51+
"postcss": "^8.4.0"
52+
},
53+
"repository": {
54+
"type": "git",
55+
"url": "https://github.com/wearedood/base-ecosystem-tracker.git"
56+
},
57+
"bugs": {
58+
"url": "https://github.com/wearedood/base-ecosystem-tracker/issues"
59+
},
60+
"homepage": "https://github.com/wearedood/base-ecosystem-tracker#readme"
61+
}

0 commit comments

Comments
 (0)