-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.35 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.35 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
{
"name": "shred-explorer",
"version": "1.0.0",
"description": "Shred Explorer - Blockchain Analytics Platform",
"private": true,
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev:frontend": "pnpm --filter frontend dev",
"dev:ponder": "pnpm --filter ponder dev",
"dev:api": "pnpm --filter ponder serve",
"dev:etl": "cd packages/etl && cargo run",
"dev": "concurrently \"pnpm dev:api\" \"pnpm dev:frontend\"",
"build:frontend": "pnpm --filter frontend build",
"build:ponder": "pnpm --filter ponder build",
"build:api": "pnpm --filter api build",
"build:etl": "cd packages/etl && cargo build --release",
"build": "pnpm build:api && pnpm build:frontend",
"start:frontend": "pnpm --filter frontend start",
"start:api": "pnpm --filter api start",
"start:etl": "cd packages/etl && cargo run --release",
"lint:frontend": "pnpm --filter frontend lint"
},
"keywords": [
"blockchain",
"analytics",
"explorer"
],
"author": "SmoothBot",
"license": "ISC",
"devDependencies": {
"concurrently": "^9.1.2"
},
"dependencies": {
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.0",
"@mui/icons-material": "^7.1.2",
"@mui/material": "^7.1.2",
"@ponder/client": "^0.11.19",
"@ponder/react": "^0.11.19",
"@tanstack/react-query": "^5.80.10"
}
}