-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 895 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 895 Bytes
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
{
"name": "etherlink-bridge-tracker",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"fetch:tzkt": "node src/utils/fetch-tzkt.js",
"fetch:blockscout": "node src/utils/fetch-blockscout.js",
"fetch": "npm run fetch:tzkt && npm run fetch:blockscout"
},
"dependencies": {
"@radix-ui/react-slot": "^1.1.0",
"axios": "^1.7.9",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"ethers": "^5.7.2",
"lucide-react": "^0.456.0",
"next": "^14.2.23",
"react": "^18",
"react-dom": "^18",
"tailwind-merge": "^2.5.4",
"tailwindcss-animate": "^1.0.7"
},
"devDependencies": {
"eslint": "^8",
"eslint-config-next": "14.2.5",
"postcss": "^8",
"tailwindcss": "^3.4.1"
},
"engines": {
"node": ">=20.0.0"
}
}