Compare commits

..

1 Commits

Author SHA1 Message Date
6b154050ef Update dependency @angular/forms to v15 2022-12-12 11:02:45 +01:00
5 changed files with 1071 additions and 1272 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
WORKDIR /srv/flask_app

View File

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

File diff suppressed because it is too large Load Diff

View File

@ -20,20 +20,20 @@
"@angular/forms": "~15.0.0",
"@angular/material": "^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",
"bootstrap": "^5.1.3",
"ngx-cron-editor": "^0.7.3",
"rxjs": "~7.6.0",
"tslib": "^2.4.0",
"zone.js": "~0.12.0"
"zone.js": "~0.11.4"
},
"devDependencies": {
"@angular-devkit/build-angular": "~15.0.0",
"@angular-devkit/build-angular": "~14.2.0",
"@angular-eslint/builder": "15.1.0",
"@angular-eslint/eslint-plugin": "14.1.2",
"@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/cli": "~14.2.0",
"@angular/compiler-cli": "~14.2.0",
@ -42,12 +42,12 @@
"@typescript-eslint/eslint-plugin": "5.39.0",
"@typescript-eslint/parser": "5.40.1",
"eslint": "^8.15.0",
"jasmine-core": "~4.5.0",
"jasmine-core": "~4.4.0",
"karma": "~6.4.0",
"karma-chrome-launcher": "~3.1.0",
"karma-coverage": "~2.2.0",
"karma-jasmine": "~5.1.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
WORKDIR /srv/flask_app