This repository was archived by the owner on Oct 9, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 2.35 KB
/
package.json
File metadata and controls
35 lines (35 loc) · 2.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
{
"name": "@wallet-analytic/core",
"type": "module",
"private": true,
"workspaces": ["apps/*", "packages/*"],
"scripts": {
"dev": "bunx concurrently -n web,api,bot -c blue,green,magenta \"bun run --filter=@wallet-analytic/web dev\" \"bun run --filter=@wallet-analytic/api dev\" \"bun run --filter=@wallet-analytic/bot dev\"",
"------- Docker -------": "-------",
"docker:rebuild": "bunx docker compose -f docker-compose.dev.yml down && docker compose -f docker-compose.dev.yml build --no-cache && docker compose -f docker-compose.dev.yml up",
"docker:rebuild:cached": "bunx docker compose -f docker-compose.dev.yml down && docker compose -f docker-compose.dev.yml build && docker compose -f docker-compose.dev.yml up",
"------- Build -------": "-------",
"build:tsc": "tsc --build",
"build:packages": "bunx concurrently -n db,shared,ton -c yellow,cyan,magenta \"bun run --filter=@wallet-analytic/db build\" \"bun run --filter=@wallet-analytic/shared build\" \"bun run --filter=@wallet-analytic/ton-client build\"",
"build:apps": "bunx concurrently -n web,api,bot -c blue,green,magenta \"bun run --filter=@wallet-analytic/web build\" \"bun run --filter=@wallet-analytic/api build\" \"bun run --filter=@wallet-analytic/bot build\"",
"build": "bun run build:packages && bun run build:apps",
"------- Test -------": "-------",
"test:packages": "bunx concurrently -n db,shared,ton -c yellow,cyan,magenta \"bun run --filter=@wallet-analytic/db test\" \"bun run --filter=@wallet-analytic/shared test\" \"bun run --filter=@wallet-analytic/ton-client test\"",
"test:apps": "bunx concurrently -n web,api,bot -c blue,green,magenta \"bun run --filter=@wallet-analytic/web test\" \"bun run --filter=@wallet-analytic/api test\" \"bun run --filter=@wallet-analytic/bot test\"",
"test": "bun run test:packages && bun run test:apps",
"------- DB -------": "-------",
"db:generate": "bun run --filter=@wallet-analytic/api db:generate",
"db:migrate": "bun run --filter=@wallet-analytic/api db:migrate",
"------- Format -------": "-------",
"clean": "rm -rf node_modules apps/*/node_modules packages/*/node_modules",
"format": "bun --bun biome format . --write"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@types/bun": "latest",
"concurrently": "^9.2.0"
},
"peerDependencies": {
"typescript": "^5.9.2"
}
}