Skip to content

Commit

Permalink
chore: update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
Julusian committed Dec 6, 2023
1 parent cd29a7a commit cc83797
Show file tree
Hide file tree
Showing 4 changed files with 190 additions and 105 deletions.
44 changes: 22 additions & 22 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,11 @@
"build-linux-x64": "node tools/build.mjs linux x64",
"build-win32-x64": "node tools/build.mjs win32 x64",
"prepare": "husky install",
"lint:raw": "eslint --ext .ts --ext .js --ext .tsx --ext .jsx --ext .mts --ext .mjs --ignore-pattern dist",
"lint:raw": "run eslint --ext .ts --ext .js --ext .tsx --ext .jsx --ext .mts --ext .mjs --ignore-pattern dist",
"lint": "yarn lint:raw .",
"lint-fix": "yarn lint --fix",
"license-validate": "yarn sofie-licensecheck"
"license-validate": "yarn sofie-licensecheck",
"eslint": "./node_modules/.bin/eslint"
},
"engines": {
"node": ">=18.18"
Expand All @@ -30,39 +31,38 @@
"dependencies": {
"cheerio": "^1.0.0-rc.12",
"chokidar": "^3.5.3",
"cors": "^2.8.4",
"express": "^4.18.1",
"mkdirp": "^1.0.1",
"moment": "^2.29.1",
"nconf": "^0.12.0",
"pino": "^8.15.0",
"pino-http": "^8.5.0",
"pouchdb-node": "^7.3.0",
"recursive-readdir": "^2.2.2",
"cors": "^2.8.5",
"express": "^4.18.2",
"mkdirp": "^3.0.1",
"moment": "^2.29.4",
"nconf": "^0.12.1",
"pino": "^8.16.2",
"pino-http": "^8.5.1",
"pouchdb-node": "^7.3.1",
"recursive-readdir": "^2.2.3",
"rxjs": "^7.8.1",
"xml2js": "^0.6.2"
},
"devDependencies": {
"@sofie-automation/code-standard-preset": "^2.5.1",
"@types/cors": "^2.8.14",
"@types/express": "^4.17.17",
"@types/mkdirp": "^1.0.0",
"@types/nconf": "^0.10.3",
"@types/node": "^18",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/mkdirp": "^2.0.0",
"@types/nconf": "^0.10.6",
"@types/node": "^18.19.2",
"@types/pino": "^7.0.5",
"@types/pouchdb-node": "^6.1.7",
"@types/recursive-readdir": "^2.2.1",
"@types/xml2js": "^0.4.12",
"eslint": "^8.48.0",
"@types/recursive-readdir": "^2.2.4",
"@types/xml2js": "^0.4.14",
"husky": "^8.0.3",
"lint-staged": "^14.0.1",
"nodemon": "^2.0.22",
"pkg": "5.8.1",
"rimraf": "^5.0.1",
"rimraf": "^5.0.5",
"ts-node": "^10.9.1",
"tslib": "^2.6.2",
"typescript": "^5.2.2",
"zip-a-folder": "^1.1.5"
"typescript": "^5.3.2",
"zip-a-folder": "^1.1.7"
},
"packageManager": "[email protected]",
"prettier": "@sofie-automation/code-standard-preset/.prettierrc.json",
Expand Down
2 changes: 1 addition & 1 deletion src/scanner.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { Observable } from 'rxjs'
import { concatMap } from 'rxjs/operators'
import util from 'util'
import chokidar from 'chokidar'
import mkdirp from 'mkdirp'
import { mkdirp } from 'mkdirp'
import os from 'os'
import fs from 'fs'
import path from 'path'
Expand Down
2 changes: 1 addition & 1 deletion tools/build.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import * as fs from 'fs/promises'
import { rimraf } from 'rimraf'
import cp from 'child_process'
import zipAFolder from 'zip-a-folder'
import mkdirp from 'mkdirp'
import { mkdirp } from 'mkdirp'

const platform = process.argv[2] || process.platform
const arch = process.argv[3] || process.arch
Expand Down
Loading

0 comments on commit cc83797

Please sign in to comment.