Skip to content
This repository has been archived by the owner on Oct 1, 2021. It is now read-only.

Commit

Permalink
feat(templates): update dependencies to latest
Browse files Browse the repository at this point in the history
  • Loading branch information
theoludwig committed Sep 30, 2021
1 parent e04c970 commit 5eba435
Show file tree
Hide file tree
Showing 23 changed files with 90,420 additions and 35,801 deletions.
1,181 changes: 603 additions & 578 deletions package-lock.json

Large diffs are not rendered by default.

24,815 changes: 18,885 additions & 5,930 deletions templates/api/express/template/package-lock.json

Large diffs are not rendered by default.

34 changes: 17 additions & 17 deletions templates/api/express/template/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -81,46 +81,46 @@
"express-async-errors": "3.1.1",
"express-http-to-https": "1.1.4",
"express-rate-limit": "5.3.0",
"express-validator": "6.12.0",
"express-validator": "6.12.2",
"helmet": "4.6.0",
"morgan": "1.10.0",
"mysql2": "2.2.5",
"mysql2": "2.3.0",
"reflect-metadata": "0.1.13",
"sequelize": "6.6.2",
"sequelize-typescript": "2.1.0",
"swagger-jsdoc": "6.1.0",
"swagger-ui-express": "4.1.6"
},
"devDependencies": {
"@commitlint/cli": "12.1.4",
"@commitlint/config-conventional": "12.1.4",
"@release-it/conventional-changelog": "3.0.1",
"@commitlint/cli": "13.2.0",
"@commitlint/config-conventional": "13.2.0",
"@release-it/conventional-changelog": "3.3.0",
"@types/bcryptjs": "2.4.2",
"@types/cors": "2.8.12",
"@types/express": "4.17.13",
"@types/express-rate-limit": "5.1.3",
"@types/jest": "26.0.24",
"@types/jest": "27.0.2",
"@types/morgan": "1.9.3",
"@types/node": "16.3.3",
"@types/node": "16.10.2",
"@types/supertest": "2.0.11",
"@types/swagger-jsdoc": "6.0.1",
"@types/swagger-ui-express": "4.1.3",
"@types/validator": "13.6.3",
"concurrently": "6.2.0",
"concurrently": "6.2.2",
"cross-env": "7.0.3",
"dockerfilelint": "^1.8.0",
"editorconfig-checker": "4.0.2",
"husky": "7.0.1",
"jest": "27.0.6",
"markdownlint-cli": "0.27.1",
"nodemon": "2.0.12",
"release-it": "14.10.0",
"husky": "7.0.2",
"jest": "27.2.4",
"markdownlint-cli": "0.28.1",
"nodemon": "2.0.13",
"release-it": "14.11.6",
"rimraf": "3.0.2",
"sqlite": "4.0.23",
"sqlite3": "5.0.2",
"supertest": "6.1.3",
"ts-jest": "27.0.3",
"sqlite3": "^4.2.0",
"supertest": "6.1.6",
"ts-jest": "27.0.5",
"ts-standard": "10.0.0",
"typescript": "4.3.5"
"typescript": "4.4.3"
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ describe('/tools/database/paginateModel', () => {
})
page += 1
expect(result1.hasMore).toBeTruthy()
expect(result1.rows[itemsPerPageInt - 1].title).toEqual(
expect(result1.rows[itemsPerPageInt - 1].getDataValue('title')).toEqual(
`title-${itemsPerPage}`
)
expect(result1.totalItems).toEqual(numberOfPosts)
Expand All @@ -100,7 +100,7 @@ describe('/tools/database/paginateModel', () => {
}
})
expect(result2.hasMore).toBeTruthy()
expect(result2.rows[itemsPerPageInt - 1].title).toEqual(
expect(result2.rows[itemsPerPageInt - 1].getDataValue('title')).toEqual(
`title-${itemsPerPageInt * 2}`
)
expect(result2.totalItems).toEqual(numberOfPosts)
Expand Down
3 changes: 2 additions & 1 deletion templates/api/express/template/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,8 @@
"outDir": "./build",
"rootDir": "./src",
"strict": true,
"esModuleInterop": true
"esModuleInterop": true,
"experimentalDecorators": true
},
"exclude": ["node_modules", "temp", "tmp"]
}
Loading

0 comments on commit 5eba435

Please sign in to comment.