Files
ukmesh/backend/package.json
T
dependabot[bot]anddependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> 5fbc45be2b chore(deps): bump the backend-dependencies group (#66)
Bumps the backend-dependencies group in /backend with 2 updates: [pg](https://github.com/brianc/node-postgres/tree/HEAD/packages/pg) and [tsx](https://github.com/privatenumber/tsx).


Updates `pg` from 8.22.0 to 8.23.0
- [Changelog](https://github.com/brianc/node-postgres/blob/master/CHANGELOG.md)
- [Commits](https://github.com/brianc/node-postgres/commits/pg@8.23.0/packages/pg)

Updates `tsx` from 4.23.11 to 4.23.12
- [Release notes](https://github.com/privatenumber/tsx/releases)
- [Changelog](https://github.com/privatenumber/tsx/blob/master/release.config.cjs)
- [Commits](https://github.com/privatenumber/tsx/compare/v4.23.11...v4.23.12)

---
updated-dependencies:
- dependency-name: pg
  dependency-version: 8.23.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: backend-dependencies
- dependency-name: tsx
  dependency-version: 4.23.12
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: backend-dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-08-27 09:41:37 +01:00

51 lines
1.9 KiB
JSON

{
"name": "meshcore-analytics-backend",
"version": "1.0.0",
"private": true,
"type": "module",
"scripts": {
"build": "tsc",
"dev": "tsx watch src/index.ts",
"spam:recompute": "node dist/tools/recomputeSpamSuspects.js",
"spam:messages": "node dist/tools/recomputeSpamMessages.js",
"db:migrate": "node dist/tools/migrate.js",
"stats:backfill-rollups": "node dist/tools/backfillStatsRollups.js",
"stats:backfill-multibyte": "node dist/tools/backfillMultibytePathFacts.js",
"stats:seed-chart-snapshot": "node dist/tools/seedStatsChartSnapshot.js",
"db:lifecycle": "node dist/tools/dataLifecycle.js",
"owner-auth:inventory": "node dist/tools/inventoryOwnerAuthorization.js",
"analysis:cleanup-orphans": "node dist/tools/cleanupOrphanedAnalysisRuns.js",
"bench:decode": "tsx src/tools/benchmarkPacketDecode.ts",
"load:realtime": "tsx src/tools/loadRealtime.ts",
"test": "node --import tsx --test $(find src -name '*.test.ts' ! -name '*.integration.test.ts' -print)",
"test:analysis-integration": "node --import tsx --test src/analysis/runState.integration.test.ts",
"test:ingest-integration": "node --import tsx --test src/db/packetBatch.integration.test.ts",
"typecheck": "tsc --noEmit",
"contract:generate": "tsx src/tools/generateOpenApi.ts",
"contract:check": "tsx src/tools/generateOpenApi.ts --check",
"start": "node dist/index.js"
},
"dependencies": {
"@michaelhart/meshcore-decoder": "^0.3.0",
"compression": "^1.7.4",
"cors": "^2.8.5",
"express": "^5.2.1",
"express-rate-limit": "^8.6.2",
"ioredis": "^6.0.0",
"mqtt": "^5.10.1",
"pg": "^8.23.0",
"prom-client": "^15.1.3",
"ws": "^8.21.3"
},
"devDependencies": {
"@types/compression": "^1.7.5",
"@types/cors": "^2.8.17",
"@types/express": "^5.0.6",
"@types/node": "^26.2.0",
"@types/pg": "^8.21.0",
"@types/ws": "^8.5.12",
"tsx": "^4.23.12",
"typescript": "^7.0.2"
}
}