-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.13 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.13 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
{
"name": "ethereum-indexer",
"version": "0.1.0",
"private": true,
"type": "module",
"description": "Industrial-grade Ethereum blockchain explorer with real-time indexing, transaction tracking, and address analytics",
"author": "Aakash Singh Rajput",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/aakash4dev/nextjs-ethereum-explorer.git"
},
"keywords": [
"ethereum",
"blockchain",
"explorer",
"indexer",
"web3",
"nextjs",
"mongodb"
],
"scripts": {
"dev": "next dev --turbopack",
"build": "next build",
"start": "next start",
"lint": "next lint",
"sync": "node scripts/sync.js",
"reset-db": "node scripts/reset-database.js --confirm"
},
"dependencies": {
"dotenv": "^16.4.5",
"mongoose": "^8.16.0",
"next": "^16.0.10",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-icons": "^5.5.0",
"sweetalert2": "^11.22.1",
"web3": "^4.16.0"
},
"devDependencies": {
"@eslint/eslintrc": "^3",
"@tailwindcss/postcss": "^4",
"eslint": "^9",
"eslint-config-next": "^16.0.10",
"tailwindcss": "^4"
}
}