update server versions

This commit is contained in:
Stefan Forstenlechner 2024-08-12 12:18:53 +02:00
parent 6fe5c0b241
commit 5b3f77c794
3 changed files with 5203 additions and 5794 deletions

View File

@ -2,7 +2,8 @@
"name": "simple-picture-gallery",
"version": "1.0.0",
"dependencies": {
"concurrently": "7.2.1"
"concurrently": "7.2.1",
"npm-check-updates": "^17.0.6"
},
"scripts": {
"install-all": "npm i && concurrently npm:install:client npm:install:server",
@ -11,6 +12,8 @@
"start-all": "concurrently npm:run:client npm:run:server",
"run:client": "npm run --prefix picture-gallery-client client:run",
"run:server": "npm run --prefix picture-gallery-server server:run",
"update:client": "ncu --cwd picture-gallery-client",
"update:server": "ncu --cwd picture-gallery-server",
"docker:buildImage": "docker build . -t simple-picture-gallery"
}
}

File diff suppressed because it is too large Load Diff

View File

@ -18,31 +18,30 @@
"author": "",
"license": "ISC",
"devDependencies": {
"@types/express": "4.17.13",
"@types/jest": "28.1.2",
"@types/node": "16.11.7",
"@types/sharp": "0.30.1",
"@typescript-eslint/eslint-plugin": "5.18.0",
"@typescript-eslint/parser": "5.18.0",
"eslint": "8.13.0",
"@types/express": "4.17.21",
"@types/jest": "29.5.12",
"@types/node": "22.2.0",
"@typescript-eslint/eslint-plugin": "8.0.1",
"@typescript-eslint/parser": "8.0.1",
"eslint": "^8.57.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-config-prettier": "8.5.0",
"eslint-import-resolver-typescript": "2.7.1",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-jest": "26.5.3",
"eslint-plugin-prettier": "4.0.0",
"jest": "28.1.1",
"nodemon": "2.0.15",
"prettier": "2.6.2",
"ts-jest": "28.0.5",
"ts-node": "10.7.0",
"typescript": "4.6.3"
"eslint-config-prettier": "9.1.0",
"eslint-import-resolver-typescript": "3.6.1",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-jest": "28.8.0",
"eslint-plugin-prettier": "5.2.1",
"jest": "29.7.0",
"nodemon": "3.1.4",
"prettier": "3.3.3",
"ts-jest": "29.2.4",
"ts-node": "10.9.2",
"typescript": "5.5.4"
},
"dependencies": {
"express": "4.17.3",
"express": "4.19.2",
"express-winston": "4.2.0",
"natsort": "2.0.3",
"sharp": "0.30.3",
"winston": "3.7.2"
"sharp": "0.33.4",
"winston": "3.14.1"
}
}