multilingual-dokugpt / package.json
ffreemt
Update progressbar
50c6a2e
raw
history blame
No virus
687 Bytes
{
"name": "localgpt",
"scripts": {
"start": "nodemon -w app.py -x run-s check run:app",
"run:app": "python app.py",
"run:app-w": "nodemon -w app.py -x python app.py",
"check-w": "nodemon -w app.py -x run-s isort format flake8 docstyle lint type:check",
"check": "run-s isort format flake8 docstyle lint type:check",
"isort": "isort --profile=black app.py",
"format": "black app.py",
"flake8": "flake8 --exit-zero app.py",
"docstyle": "pydocstyle --convention=google app.py",
"lint": "pylint app.py --disable=fixme",
"type:check": "pyright app.py"
},
"packageManager": "[email protected]",
"devDependencies": {
"run-all": "^1.0.1"
}
}