Merge pull request #44 from aleleba/PR-744377

PR-744377: Update dependencies versions.
This commit is contained in:
Alejandro Lembke Barrientos 2024-01-05 16:34:18 -06:00 committed by GitHub
commit f3e2f6993e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 639 additions and 569 deletions

View File

@ -5,7 +5,7 @@ This project aims to have a starter kit for creating a new Node with typescript,
Tech(Library or Framework) | Version | Tech(Library or Framework) | Version |
--- | --- | --- | --- |
Jest (Testing) | 29.7.0 Jest (Testing) | 29.7.0
Typescript | 5.3.2 Typescript | 5.3.3
GraphQL | 16.8.1 GraphQL | 16.8.1
Type GraphQL | 2.0.0-beta.3 Type GraphQL | 2.0.0-beta.3

1174
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -1,6 +1,6 @@
{ {
"name": "@aleleba/create-node-ts-graphql-server", "name": "@aleleba/create-node-ts-graphql-server",
"version": "1.5.12", "version": "1.5.13",
"description": "Node with Typescript and GraphQL Server", "description": "Node with Typescript and GraphQL Server",
"bin": "./bin/cli.js", "bin": "./bin/cli.js",
"main": "index.js", "main": "index.js",
@ -46,41 +46,41 @@
"graphql-playground-middleware-express": "^1.7.23", "graphql-playground-middleware-express": "^1.7.23",
"graphql-subscriptions": "^2.0.0", "graphql-subscriptions": "^2.0.0",
"graphql-tools": "^9.0.0", "graphql-tools": "^9.0.0",
"graphql-ws": "^5.14.2", "graphql-ws": "^5.14.3",
"reflect-metadata": "^0.1.13", "reflect-metadata": "^0.2.1",
"type-graphql": "^2.0.0-beta.3", "type-graphql": "^2.0.0-beta.3",
"web-push": "^3.6.6", "web-push": "^3.6.6",
"ws": "^8.14.2" "ws": "^8.16.0"
}, },
"devDependencies": { "devDependencies": {
"@babel/core": "^7.23.3", "@babel/core": "^7.23.7",
"@babel/preset-env": "^7.23.3", "@babel/preset-env": "^7.23.7",
"@babel/preset-typescript": "^7.23.3", "@babel/preset-typescript": "^7.23.3",
"@babel/register": "^7.22.15", "@babel/register": "^7.23.7",
"@types/body-parser": "^1.19.5", "@types/body-parser": "^1.19.5",
"@types/cookie-parser": "^1.4.6", "@types/cookie-parser": "^1.4.6",
"@types/cors": "^2.8.17", "@types/cors": "^2.8.17",
"@types/express": "^4.17.21", "@types/express": "^4.17.21",
"@types/jest": "^29.5.10", "@types/jest": "^29.5.11",
"@types/node": "^20.9.4", "@types/node": "^20.10.6",
"@types/supertest": "^2.0.16", "@types/supertest": "^6.0.2",
"@types/webpack": "^5.28.5", "@types/webpack": "^5.28.5",
"@types/webpack-node-externals": "^3.0.4", "@types/webpack-node-externals": "^3.0.4",
"@types/ws": "^8.5.10", "@types/ws": "^8.5.10",
"@typescript-eslint/eslint-plugin": "^6.12.0", "@typescript-eslint/eslint-plugin": "^6.17.0",
"@typescript-eslint/parser": "^6.12.0", "@typescript-eslint/parser": "^6.17.0",
"babel-loader": "^9.1.3", "babel-loader": "^9.1.3",
"clean-webpack-plugin": "^4.0.0", "clean-webpack-plugin": "^4.0.0",
"compression-webpack-plugin": "^10.0.0", "compression-webpack-plugin": "^10.0.0",
"eslint": "^8.54.0", "eslint": "^8.56.0",
"eslint-webpack-plugin": "^4.0.1", "eslint-webpack-plugin": "^4.0.1",
"jest": "^29.7.0", "jest": "^29.7.0",
"nodemon": "^3.0.1", "nodemon": "^3.0.2",
"resolve-ts-aliases": "^1.0.1", "resolve-ts-aliases": "^1.0.1",
"supertest": "^6.3.3", "supertest": "^6.3.3",
"ts-jest": "^29.1.1", "ts-jest": "^29.1.1",
"ts-loader": "^9.5.1", "ts-loader": "^9.5.1",
"typescript": "^5.3.2", "typescript": "^5.3.3",
"webpack": "^5.89.0", "webpack": "^5.89.0",
"webpack-cli": "^5.1.4", "webpack-cli": "^5.1.4",
"webpack-manifest-plugin": "^5.0.0", "webpack-manifest-plugin": "^5.0.0",

View File

@ -3,7 +3,7 @@ import supertest from 'supertest';
describe('global server tests', () => { describe('global server tests', () => {
let request: supertest.SuperTest<supertest.Test>; let request: supertest.SuperTest<supertest.Test>;
beforeEach( async () => { beforeEach( async () => {
request = await supertest(server); request = await supertest(server) as unknown as supertest.SuperTest<supertest.Test>;
}); });
it('should return Test data from test Query', async () => { it('should return Test data from test Query', async () => {