-
-
Notifications
You must be signed in to change notification settings - Fork 63
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Node 20 & dependencies upgrade (#165)
* Upgrade to node 20, package updates, fix some vulnerabilities * husky changes * smaller pkg updates
- Loading branch information
1 parent
f740c6b
commit 78d6259
Showing
7 changed files
with
926 additions
and
919 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
#!/bin/sh | ||
|
||
pretty-quick --staged && yarn lint && yarn test |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,7 +12,8 @@ | |
"test:debug": "node --inspect-brk ./node_modules/jest/bin/jest.js --runInBand", | ||
"lint": "eslint src", | ||
"format": "prettier --write .", | ||
"start": "node src/web-server.js" | ||
"start": "node src/web-server.js", | ||
"prepare": "husky" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
|
@@ -24,42 +25,38 @@ | |
"author": "nhumrich", | ||
"license": "Apache-2.0", | ||
"engines": { | ||
"node": ">=14.0.0" | ||
"node": ">=20.0.0" | ||
}, | ||
"packageManager": "[email protected]", | ||
"bugs": { | ||
"url": "https://github.com/single-spa/import-map-deployer/issues" | ||
}, | ||
"husky": { | ||
"hooks": { | ||
"pre-commit": "pretty-quick --staged && yarn lint && yarn test" | ||
} | ||
}, | ||
"homepage": "https://github.com/single-spa/import-map-deployer#readme", | ||
"dependencies": { | ||
"@azure/storage-blob": "^12.1.2", | ||
"@google-cloud/storage": "^5.7.4", | ||
"@google-cloud/storage": "^6.12.0", | ||
"aws-sdk": "^2.2.27", | ||
"basic-auth": "^1.0.3", | ||
"body-parser": "^1.14.2", | ||
"dotenv": "^8.2.0", | ||
"express": "^4.13.3", | ||
"lodash": "^4.17.11", | ||
"minimist": "^1.2.0", | ||
"morgan": "^1.8.1", | ||
"request": "^2.79.0", | ||
"basic-auth": "^1.1.0", | ||
"body-parser": "^1.20.2", | ||
"dotenv": "^8.6.0", | ||
"express": "^4.19.2", | ||
"lodash": "^4.17.21", | ||
"minimist": "^1.2.8", | ||
"morgan": "^1.10.0", | ||
"request": "^2.88.2", | ||
"rwlock": "^5.0.0" | ||
}, | ||
"devDependencies": { | ||
"eslint": "^7.2.0", | ||
"eslint-config-node-important-stuff": "^1.0.0", | ||
"eslint": "^7.32.0", | ||
"eslint-config-node-important-stuff": "^1.1.0", | ||
"eslint-config-prettier": "^6.11.0", | ||
"eslint-plugin-prettier": "^3.1.3", | ||
"husky": "^4.2.5", | ||
"husky": "^9.1.5", | ||
"jest": "^26.0.1", | ||
"jest-cli": "^26.0.1", | ||
"prettier": "^2.0.4", | ||
"pretty-quick": "^2.0.1", | ||
"supertest": "^4.0.2" | ||
"pretty-quick": "^2.0.2", | ||
"supertest": "^6.3.4" | ||
}, | ||
"publishConfig": { | ||
"registry": "https://registry.npmjs.org" | ||
|
Oops, something went wrong.