-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.1 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.1 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
{
"name": "blockchain",
"private": true,
"description": "Blockchain implementation for fun.",
"scripts": {
"test": "vitest run",
"test:watch": "vitest",
"test:ui": "vitest --ui",
"lint": "oxlint .",
"lint:fix": "oxlint . --fix",
"fmt": "oxfmt --check",
"fmt:fix": "oxfmt",
"app:bank": "pnpm --filter @blockchain/bank serve",
"app:miner": "pnpm --filter @blockchain/miner serve",
"typecheck:bank": "pnpm --filter @blockchain/bank typecheck",
"typecheck:miner": "pnpm --filter @blockchain/miner typecheck",
"debug:bank": "pnpm --filter @blockchain/bank debug",
"debug:miner": "pnpm --filter @blockchain/miner debug"
},
"author": "Exilesprx <exiles.prx@gmail.com>",
"license": "ISC",
"packageManager": "pnpm@10.33.0",
"dependencies": {
"@tsconfig/node24": "^24.0.4"
},
"devDependencies": {
"@faker-js/faker": "^10.4.0",
"@types/node": "^25.6.0",
"@vitest/coverage-v8": "^4.1.4",
"@vitest/ui": "^4.1.4",
"globals": "^17.5.0",
"oxfmt": "^0.45.0",
"oxlint": "^1.60.0",
"typescript": "^6.0.3",
"vitest": "^4.1.4"
}
}