chore(deps): 🔧 Update dependency JSON configuration files

Co-Authored-By: Lilith Autocommit <noreply@atlilith.com>
This commit is contained in:
Lilith 2026-02-06 02:15:19 -08:00
parent a2c03c6958
commit 7147491996
5 changed files with 14 additions and 16 deletions

View file

@ -13,9 +13,9 @@
"start:debug": "nest start --debug --watch",
"start:prod": "node dist/main.js",
"lint": "eslint \"src/**/*.ts\"",
"test": "jest --passWithNoTests",
"test:watch": "jest --watch",
"test:cov": "jest --coverage",
"test": "lixtest",
"test:watch": "lixtest --watch",
"test:cov": "lixtest --coverage",
"typecheck": "tsc --noEmit"
},
"dependencies": {

View file

@ -10,11 +10,9 @@
"start:dev": "nest start --watch",
"start:prod": "node dist/main",
"typecheck": "tsc --noEmit",
"test": "jest",
"test:watch": "jest --watch",
"test:cov": "jest --coverage",
"test:debug": "node --inspect-brk -r tsconfig-paths/register -r ts-node/register node_modules/.bin/jest --runInBand",
"test:e2e": "jest --config ./test/jest-e2e.json --runInBand",
"test": "lixtest",
"test:watch": "lixtest --watch",
"test:cov": "lixtest --coverage",
"migration:generate": "npx tsx ../../../node_modules/typeorm/cli.js migration:generate -d ./src/data-source.ts",
"migration:run": "npx tsx ../../../node_modules/typeorm/cli.js migration:run -d ./src/data-source.ts",
"migration:revert": "npx tsx ../../../node_modules/typeorm/cli.js migration:revert -d ./src/data-source.ts",

View file

@ -13,9 +13,9 @@
"start:debug": "nest start --debug --watch",
"start:prod": "node dist/main",
"lint": "eslint \"src/**/*.ts\"",
"test": "jest --passWithNoTests",
"test:watch": "jest --watch",
"test:cov": "jest --coverage",
"test": "lixtest",
"test:watch": "lixtest --watch",
"test:cov": "lixtest --coverage",
"typecheck": "tsc --noEmit",
"verify": "bun run build && node scripts/verify-circular-deps.mjs"
},

View file

@ -17,6 +17,8 @@
"build:lib": "tsup",
"build:app": "vite build",
"preview": "vite preview",
"prebuild": "tsup",
"pretypecheck": "tsup",
"typecheck": "tsc --noEmit",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",

View file

@ -9,11 +9,9 @@
"build:types": "tsc --emitDeclarationOnly",
"start": "node dist/index.mjs",
"dev": "tsx src/index.ts",
"test": "jest --testPathIgnorePatterns=e2e --passWithNoTests",
"test:e2e": "jest e2e",
"test:all": "jest",
"test:watch": "jest --watch --testPathIgnorePatterns=e2e",
"test:coverage": "jest --coverage --testPathIgnorePatterns=e2e --passWithNoTests"
"test": "lixtest",
"test:watch": "lixtest --watch",
"test:coverage": "lixtest --coverage"
},
"keywords": [
"monitoring",