-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.24 KB
/
Copy pathpackage.json
File metadata and controls
40 lines (40 loc) · 1.24 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
{
"name": "ckbadger",
"version": "0.3.1",
"private": true,
"description": "High-performance blockchain explorer for Nervos CKB",
"repository": {
"type": "git",
"url": "https://github.com/nervosnetwork/ckbadger.git"
},
"license": "MIT",
"scripts": {
"dev": "pnpm --filter frontend dev",
"build": "pnpm --filter frontend build",
"lint": "pnpm --filter frontend lint",
"format": "prettier --write .",
"format:check": "prettier --check .",
"prepare": "lefthook install",
"docker:up": "docker compose up -d",
"docker:down": "docker compose down",
"docker:logs": "docker compose logs -f",
"fuzz": "npx tsx fuzzing/src/index.ts",
"fuzz:api": "npx tsx fuzzing/src/index.ts --mode=api",
"fuzz:page": "npx tsx fuzzing/src/index.ts --mode=page",
"fuzz:quick": "npx tsx fuzzing/src/index.ts -b 5 -t 5 -a 3",
"fuzz:visual": "npx playwright test --config=fuzzing/playwright/playwright.config.ts"
},
"devDependencies": {
"@playwright/test": "^1.49.1",
"@types/node": "^22.10.2",
"lefthook": "^1.10.10",
"prettier": "^3.4.2",
"tsx": "^4.21.0",
"typescript": "^5.7.2"
},
"packageManager": "pnpm@9.15.0",
"engines": {
"node": ">=20.0.0",
"pnpm": ">=9.0.0"
}
}