running prettier for cleanup

This commit is contained in:
Boki 2025-06-11 10:13:25 -04:00
parent fe7733aeb5
commit d85cd58acd
151 changed files with 29158 additions and 27966 deletions

View file

@ -19,6 +19,10 @@
"test:libs": "turbo run test --filter='./libs/*'",
"test:apps": "turbo run test --filter=./apps/*/*",
"lint": "turbo run lint",
"format": "./scripts/format.sh",
"format:check": "prettier --check 'apps/**/*.{ts,json}' 'libs/**/*.{ts,json}' '*.json'",
"format:ts": "prettier --write 'apps/**/*.ts' 'libs/**/*.ts'",
"format:json": "prettier --write 'apps/**/*.json' 'libs/**/*.json' '*.json'",
"start": "turbo run start",
"clean": "turbo run clean",
"clean:cache": "./scripts/clean.sh --cache",
@ -49,6 +53,7 @@
"apps/*"
],
"devDependencies": {
"@ianvs/prettier-plugin-sort-imports": "^4.4.2",
"@testcontainers/mongodb": "^10.7.2",
"@testcontainers/postgresql": "^10.7.2",
"@types/bun": "latest",
@ -58,6 +63,7 @@
"bun-types": "^1.2.15",
"mongodb-memory-server": "^9.1.6",
"pg-mem": "^2.8.1",
"prettier": "^3.5.3",
"supertest": "^6.3.4",
"turbo": "^2.5.4",
"typescript": "^5.8.3",
@ -72,5 +78,10 @@
"bullmq": "^5.53.2",
"ioredis": "^5.6.1"
},
"trustedDependencies": ["@tailwindcss/oxide", "esbuild", "mongodb", "mongodb-memory-server"]
"trustedDependencies": [
"@tailwindcss/oxide",
"esbuild",
"mongodb",
"mongodb-memory-server"
]
}