Compare commits

..

1 Commits

Author SHA1 Message Date
42d6cceab3 Update dependency @angular/common to v15 2022-12-12 11:02:33 +01:00
5 changed files with 1153 additions and 1356 deletions

View File

@ -1,4 +1,4 @@
FROM python:3.11-slim FROM python:3.10-slim
# Change the working directory to the root of the project # Change the working directory to the root of the project
WORKDIR /srv/flask_app WORKDIR /srv/flask_app

View File

@ -1,6 +1,6 @@
Flask~=2.1.2 Flask~=2.1.2
python-dotenv==0.21.0 python-dotenv==0.21.0
uwsgi==2.0.21 uwsgi==2.0.20
Flask_SQLAlchemy==3.0.2 Flask_SQLAlchemy==3.0.2
python-dotenv==0.21.0 python-dotenv==0.21.0
pymysql==1.0.2 pymysql==1.0.2
@ -8,10 +8,10 @@ pyjwt==2.6.0
apiflask==1.0.0 apiflask==1.0.0
flask-cors==3.0.10 flask-cors==3.0.10
bcrypt==4.0.1 bcrypt==4.0.1
pytest~=7.2.0 pytest~=7.1.2
pytest-cov pytest-cov
marshmallow~=3.19.0 marshmallow~=3.18.0
faker~=15.3.4 faker~=15.1.1
requests~=2.28.1 requests~=2.28.1
investpy~=1.0.8 investpy~=1.0.8
pandas~=1.5.0 pandas~=1.5.0

File diff suppressed because it is too large Load Diff

View File

@ -12,42 +12,42 @@
}, },
"private": true, "private": true,
"dependencies": { "dependencies": {
"@angular/animations": "~15.0.0", "@angular/animations": "~14.2.0",
"@angular/cdk": "^15.0.0", "@angular/cdk": "^15.0.0",
"@angular/common": "~15.0.0", "@angular/common": "~15.0.0",
"@angular/compiler": "~15.0.0", "@angular/compiler": "~14.2.0",
"@angular/core": "~14.2.0", "@angular/core": "~14.2.0",
"@angular/forms": "~15.0.0", "@angular/forms": "~14.2.0",
"@angular/material": "^15.0.0", "@angular/material": "^15.0.0",
"@angular/platform-browser": "~15.0.0", "@angular/platform-browser": "~14.2.0",
"@angular/platform-browser-dynamic": "~15.0.0", "@angular/platform-browser-dynamic": "~14.2.0",
"@angular/router": "~15.0.0", "@angular/router": "~15.0.0",
"bootstrap": "^5.1.3", "bootstrap": "^5.1.3",
"ngx-cron-editor": "^0.7.3", "ngx-cron-editor": "^0.7.3",
"rxjs": "~7.6.0", "rxjs": "~7.6.0",
"tslib": "^2.4.0", "tslib": "^2.4.0",
"zone.js": "~0.12.0" "zone.js": "~0.11.4"
}, },
"devDependencies": { "devDependencies": {
"@angular-devkit/build-angular": "~15.0.0", "@angular-devkit/build-angular": "~14.2.0",
"@angular-eslint/builder": "15.1.0", "@angular-eslint/builder": "15.1.0",
"@angular-eslint/eslint-plugin": "14.4.0", "@angular-eslint/eslint-plugin": "14.1.2",
"@angular-eslint/eslint-plugin-template": "15.1.0", "@angular-eslint/eslint-plugin-template": "15.1.0",
"@angular-eslint/schematics": "15.1.0", "@angular-eslint/schematics": "14.1.2",
"@angular-eslint/template-parser": "15.1.0", "@angular-eslint/template-parser": "15.1.0",
"@angular/cli": "~14.2.0", "@angular/cli": "~14.2.0",
"@angular/compiler-cli": "~15.0.0", "@angular/compiler-cli": "~14.2.0",
"@types/jasmine": "~4.3.0", "@types/jasmine": "~4.3.0",
"@types/node": "^18.0.0", "@types/node": "^18.0.0",
"@typescript-eslint/eslint-plugin": "5.39.0", "@typescript-eslint/eslint-plugin": "5.39.0",
"@typescript-eslint/parser": "5.46.0", "@typescript-eslint/parser": "5.40.1",
"eslint": "^8.15.0", "eslint": "^8.15.0",
"jasmine-core": "~4.5.0", "jasmine-core": "~4.4.0",
"karma": "~6.4.0", "karma": "~6.4.0",
"karma-chrome-launcher": "~3.1.0", "karma-chrome-launcher": "~3.1.0",
"karma-coverage": "~2.2.0", "karma-coverage": "~2.2.0",
"karma-jasmine": "~5.1.0", "karma-jasmine": "~5.1.0",
"karma-jasmine-html-reporter": "~2.0.0", "karma-jasmine-html-reporter": "~2.0.0",
"typescript": "~4.9.0" "typescript": "~4.8.0"
} }
} }

View File

@ -1,4 +1,4 @@
FROM python:3.11-slim FROM python:3.10-slim
# Change the working directory to the root of the project # Change the working directory to the root of the project
WORKDIR /srv/flask_app WORKDIR /srv/flask_app