-
-
Notifications
You must be signed in to change notification settings - Fork 28
/
package.json
49 lines (49 loc) · 1.64 KB
/
package.json
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
{
"name": "evm-diff",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "bun prepare-chain-data && NEXT_PUBLIC_BRANCH_NAME=$(git rev-parse --abbrev-ref HEAD) next dev",
"build": "NEXT_PUBLIC_BRANCH_NAME=$(git rev-parse --abbrev-ref HEAD) next build",
"start": "bun prepare-chain-data && NEXT_PUBLIC_BRANCH_NAME=$(git rev-parse --abbrev-ref HEAD) next start",
"lint": "next lint --fix && tsc --noEmit && bunx @biomejs/biome lint --apply .",
"fmt": "bunx @biomejs/biome format --write .",
"check": "bun prepare-chain-data && bun lint && bun fmt",
"fetch-data": "bash script/main.sh",
"prepare-chain-data": "bash script/prepare-chain-data.sh"
},
"dependencies": {
"@headlessui/react": "^1.7.16",
"@heroicons/react": "^2.0.17",
"@vercel/analytics": "^1.0.1",
"@vercel/og": "^0.5.10",
"@wagmi/chains": "^0.3.1",
"next": "^14.2.3",
"next-themes": "^0.2.1",
"react": "18.2.0",
"react-diff-viewer-continued": "^3.4.0",
"react-dom": "^18.3.1",
"react-markdown": "^8.0.7",
"sharp": "^0.33.4",
"viem": "^1.5.0"
},
"devDependencies": {
"@biomejs/biome": "^1.7.2",
"@tailwindcss/forms": "^0.5.3",
"@types/bun": "^1.1.0",
"@types/node": "18.16.3",
"@types/react": "^18.3.2",
"@types/react-dom": "^18.3.0",
"@typescript-eslint/eslint-plugin": "^6.1.0",
"@typescript-eslint/parser": "^6.1.0",
"abitype": "^0.9.6",
"autoprefixer": "10.4.14",
"clipboardy": "^3.0.0",
"eslint": "8.39.0",
"eslint-config-next": "^14.2.3",
"eslint-plugin-react": "^7.32.2",
"postcss": "8.4.31",
"tailwindcss": "3.3.2",
"typescript": "5.0.4"
}
}