-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 2.8 KB
/
package.json
File metadata and controls
93 lines (93 loc) · 2.8 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "debugger-webapp",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint .",
"lint-fix": "eslint . --fix",
"type-check": "tsc --noEmit",
"test": "echo \"No tests specified\" && exit 0",
"check": "npm run type-check && npm run lint",
"db:generate": "dotenv -e .env.local -- drizzle-kit generate",
"db:push": "dotenv -e .env.local -- drizzle-kit push",
"db:migrate": "dotenv -e .env.local -- drizzle-kit migrate",
"db:studio": "dotenv -e .env.local -- drizzle-kit studio",
"db:drop": "dotenv -e .env.local -- drizzle-kit drop"
},
"dependencies": {
"@ethereum-sourcify/compilers-types": "^1.0.9",
"@headlessui/react": "^2.2.9",
"@heroicons/react": "^2.0.18",
"@monaco-editor/react": "^4.7.0",
"@radix-ui/react-avatar": "^1.0.4",
"@radix-ui/react-checkbox": "^1.1.1",
"@radix-ui/react-dialog": "^1.1.1",
"@radix-ui/react-dropdown-menu": "^2.0.6",
"@radix-ui/react-icons": "^1.3.2",
"@radix-ui/react-label": "^2.0.2",
"@radix-ui/react-navigation-menu": "^1.1.4",
"@radix-ui/react-popover": "^1.1.1",
"@radix-ui/react-scroll-area": "^1.1.0",
"@radix-ui/react-select": "^2.1.1",
"@radix-ui/react-separator": "^1.1.0",
"@radix-ui/react-slot": "^1.0.2",
"@radix-ui/react-tabs": "^1.1.0",
"@radix-ui/react-toast": "^1.2.2",
"@radix-ui/react-toggle": "^1.1.0",
"@radix-ui/react-toggle-group": "^1.1.0",
"@radix-ui/react-tooltip": "^1.0.7",
"@shazow/whatsabi": "^0.23.0",
"@tanstack/react-table": "^8.20.5",
"@tevm/actions": "^1.0.0-next.149",
"abitype": "^1.0.8",
"better-auth": "^1.4.5",
"camelcase-keys": "^9.1.3",
"class-variance-authority": "^0.7.0",
"clsx": "^2.0.0",
"cmdk": "^1.1.1",
"d3": "^7.9.0",
"d3-flame-graph": "^4.1.3",
"drizzle-orm": "^0.44.6",
"ethers": "^6.16.0",
"js-md5": "^0.8.3",
"lodash": "^4.17.23",
"lucide-react": "^0.546.0",
"lz-string": "^1.5.0",
"monaco-editor": "^0.52.2",
"next": "15.5.10",
"next-themes": "^0.4.6",
"pino": "^10.1.0",
"pino-pretty": "^13.1.3",
"postgres": "^3.4.7",
"react": "19.2.3",
"react-dom": "^19.2.3",
"react-resizable-panels": "^2.1.6",
"solc": "^0.8.30",
"tailwind-merge": "^1.14.0",
"tailwindcss-animate": "^1.0.7",
"viem": "^2.31.7"
},
"devDependencies": {
"@types/js-md5": "^0.8.0",
"@types/lodash": "^4.17.1",
"@types/node": "24.9.1",
"@types/pg": "^8.10.9",
"@types/react": "^19.2.7",
"@types/react-dom": "^19.2.3",
"autoprefixer": "^10.4.16",
"dotenv-cli": "^10.0.0",
"drizzle-kit": "^0.31.5",
"eslint": "^9.39.2",
"eslint-config-next": "^15.5.6",
"eslint-plugin-import": "^2.30.0",
"eslint-plugin-jsx-a11y": "^6.10.0",
"eslint-plugin-react": "^7.35.2",
"postcss": "^8.4.31",
"postcss-import": "^15.1.0",
"tailwindcss": "^3.4.18",
"typescript": "^5.5.4"
}
}