-
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.17 KB
/
Copy pathpackage.json
File metadata and controls
37 lines (37 loc) · 1.17 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": "xops",
"private": true,
"version": "0.1.0",
"description": "Wallet-native deployment platform — boot.xops",
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev --parallel",
"lint": "turbo run lint",
"typecheck": "turbo run typecheck",
"test": "vitest run",
"clean": "turbo run clean && rm -rf node_modules",
"db:push": "turbo run db:push --filter=@xops/db",
"db:migrate": "turbo run db:migrate --filter=@xops/db",
"db:studio": "turbo run db:studio --filter=@xops/db",
"infra:up": "docker compose -f infrastructure/docker/docker-compose.yml up -d",
"infra:down": "docker compose -f infrastructure/docker/docker-compose.yml down",
"infra:logs": "docker compose -f infrastructure/docker/docker-compose.yml logs -f",
"format": "prettier --write \"**/*.{ts,tsx,md,json}\" --ignore-path .gitignore"
},
"devDependencies": {
"@types/node": "^22.0.0",
"prettier": "^3.3.0",
"turbo": "^2.3.0",
"typescript": "^5.7.0",
"vitest": "^3.0.5"
},
"engines": {
"node": ">=20.0.0",
"pnpm": ">=9.0.0"
},
"packageManager": "pnpm@9.15.0",
"workspaces": [
"apps/*",
"packages/*"
]
}