Bootstrap modern explorer stack

This commit is contained in:
Codex Bot
2026-03-23 23:18:01 +01:00
parent a9a4cb4245
commit 5cb17934c2
34 changed files with 4362 additions and 2 deletions

17
package.json Normal file
View File

@@ -0,0 +1,17 @@
{
"name": "peya-explorer",
"private": true,
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"build": "npm run build --workspaces --if-present",
"dev:web": "npm run dev -w @peya-explorer/web",
"dev:api": "npm run dev -w @peya-explorer/api",
"dev:indexer": "npm run dev -w @peya-explorer/indexer",
"db:migrate": "npm run db:migrate -w @peya-explorer/indexer",
"index:once": "npm run index:once -w @peya-explorer/indexer"
}
}