fix(dashboards): add typecheck script, remove stale engines.node 20.x

This commit is contained in:
saravanakumardb1 2026-03-24 08:39:58 -07:00
parent 19a1fd8aa2
commit 4d050696c1
2 changed files with 2 additions and 6 deletions

View File

@ -2,14 +2,12 @@
"name": "@bytelyst/admin-web",
"version": "0.1.0",
"private": true,
"engines": {
"node": "20.x"
},
"scripts": {
"dev": "next dev",
"build": "next build --webpack",
"start": "next start",
"lint": "eslint",
"typecheck": "tsc --noEmit",
"check": "tsc --noEmit && eslint",
"test": "vitest run",
"test:watch": "vitest",

View File

@ -2,15 +2,13 @@
"name": "@bytelyst/tracker-web",
"version": "0.1.0",
"private": true,
"engines": {
"node": "20.x"
},
"scripts": {
"pretest": "pnpm --dir ../.. --filter @bytelyst/api-client --filter @bytelyst/config --filter @bytelyst/errors --filter @bytelyst/logger --filter @bytelyst/telemetry-client build",
"dev": "next dev --port 3003",
"build": "next build --webpack",
"start": "next start --port 3003",
"lint": "eslint",
"typecheck": "tsc --noEmit",
"check": "tsc --noEmit && eslint",
"test": "vitest run",
"test:watch": "vitest",