Files
remnawave-minishop/package.json
T

19 lines
737 B
JSON

{
"private": true,
"scripts": {
"build:webapp": "npm --prefix frontend run build:webapp",
"lint:py": "python -m ruff check .",
"lint:js": "npm --prefix frontend run lint",
"lint": "npm run lint:py && npm run lint:js",
"format:py": "python -m ruff format .",
"format:js": "npm --prefix frontend run format",
"format": "npm run format:py && npm run format:js",
"format:check:py": "python -m ruff format --check .",
"format:check:js": "npm --prefix frontend run format:check",
"format:check": "npm run format:check:py && npm run format:check:js",
"bench:bot": "python scripts/perf_benchmarks.py",
"test": "pytest -q",
"check": "npm run lint && npm test && npm run build:webapp"
}
}