aboutsummaryrefslogtreecommitdiff
path: root/package.json
diff options
context:
space:
mode:
authordependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>2021-09-06 21:06:22 +0000
committerGitHub <noreply@github.com>2021-09-06 21:06:22 +0000
commit487f208565894f332ca58c13e1b208c3beb9c8c6 (patch)
treeb3209e94cc63658b5430bc1949b80140cc27efe4 /package.json
parent4f03cb71b30978b277ff292dbddeba182117a7cb (diff)
downloadskyblock-api-487f208565894f332ca58c13e1b208c3beb9c8c6.tar.gz
skyblock-api-487f208565894f332ca58c13e1b208c3beb9c8c6.tar.bz2
skyblock-api-487f208565894f332ca58c13e1b208c3beb9c8c6.zip
Bump node-fetch from 2.6.1 to 3.0.0 (#116)
* Bump node-fetch from 2.6.1 to 3.0.0 Bumps [node-fetch](https://github.com/node-fetch/node-fetch) from 2.6.1 to 3.0.0. - [Release notes](https://github.com/node-fetch/node-fetch/releases) - [Changelog](https://github.com/node-fetch/node-fetch/blob/main/docs/CHANGELOG.md) - [Commits](https://github.com/node-fetch/node-fetch/compare/v2.6.1...v3.0.0) --- updated-dependencies: - dependency-name: node-fetch dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> * fix issues with node fetch 3.0 * change module to esnext instead of commonjs * fix imports and tests * fix package-lock.json Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: mat <github@matdoes.dev> Co-authored-by: mat <27899617+mat-1@users.noreply.github.com>
Diffstat (limited to 'package.json')
-rw-r--r--package.json16
1 files changed, 8 insertions, 8 deletions
diff --git a/package.json b/package.json
index ec6faf6..3870277 100644
--- a/package.json
+++ b/package.json
@@ -9,7 +9,7 @@
"start": "npm i --only=prod; node build/index.js"
},
"engines": {
- "node" : ">=16.0.0"
+ "node": ">=16.0.0"
},
"repository": {
"type": "git",
@@ -33,22 +33,22 @@
"lru-cache": "^6.0.0",
"mongodb": "^4.1.1",
"node-cache": "^5.1.2",
- "node-fetch": "^2.6.1",
+ "node-fetch": "^3.0.0",
"prismarine-nbt": "^1.6.0",
- "uuid": "^8.3.2",
- "queue-promise": "^2.2.1"
+ "queue-promise": "^2.2.1",
+ "uuid": "^8.3.2"
},
"devDependencies": {
"@types/express": "^4.17.13",
"@types/express-rate-limit": "^5.1.3",
+ "@types/lru-cache": "^5.1.1",
"@types/mocha": "^9.0.0",
- "@types/node": "^16.7.10",
"@types/mongodb": "^4.0.7",
- "@types/lru-cache": "^5.1.1",
- "@types/node-fetch": "^3.0.3",
+ "@types/node": "^16.7.10",
"dotenv": "^10.0.0",
"mocha": "^9.1.1",
"ts-node": "^10.2.1",
"typescript": "^4.4.2"
- }
+ },
+ "type": "module"
}