From 860d6ee11ef1df2c3a16bd2ed469122516dc3ed5 Mon Sep 17 00:00:00 2001 From: Kevin Schaich Date: Fri, 30 Dec 2022 13:06:52 -0500 Subject: [PATCH] Fix dependency issues (#145) * Test fix dep issue * Add step to list NPM dependencies for GH Actions * Manually pin version of @types/express-serve-static-core * Manually pin Lodash version * Remove overrides block in package.json --- .github/workflows/test.yml | 1 + package.json | 10 ++++------ 2 files changed, 5 insertions(+), 6 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 0a68670c..67d6ba55 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -22,4 +22,5 @@ jobs: with: node-version: ${{ matrix.node-version }} - run: npm install + - run: npm list --depth=1 - run: npm test diff --git a/package.json b/package.json index 86a3788d..161b2bb3 100644 --- a/package.json +++ b/package.json @@ -21,8 +21,9 @@ "dependencies": { "@types/body-parser": "^1.19.0", "@types/express": "4.17.3", + "@types/express-serve-static-core": "4.17.28", "@types/glob": "^7.1.2", - "@types/lodash": "^4.14.149", + "@types/lodash": "4.14.149", "@types/node": "^14.0.13", "@types/prompts": "^2.0.3", "ajv": "^6.12.0", @@ -35,20 +36,17 @@ "glob": "^7.1.6", "googleapis": "47.0.0", "jsonc": "^2.0.0", - "lodash": "^4.17.15", + "lodash": "4.17.15", "open": "^7.0.2", "plaid": "^7.0.0", "prompts": "^2.3.1", - "typescript": "^3.8.3", + "typescript": "3.8.3", "typescript-json-schema": "^0.42.0", "yargs": "^15.1.0" }, "devDependencies": { "prettier": "^1.16.4" }, - "overrides": { - "@types/express-serve-static-core": "4.17.30" - }, "description": "Automate your personal finances – for free, with no ads, and no data collection.", "repository": { "type": "git",