PixelForge / imageforge /package.json
Gregorfun's picture
Initial commit
32c5da4
{
"name": "imageforge",
"private": true,
"version": "0.1.0",
"scripts": {
"dev": "npm --prefix frontend run dev",
"dev:stack": "powershell -ExecutionPolicy Bypass -File scripts/start-prod.ps1 -FrontendMode web",
"build": "npm --prefix frontend run build",
"backend": "python -m backend.app.main",
"backend:server": "set IMAGEFORGE_HOST=0.0.0.0&& python -m backend.app.main",
"test": "pytest",
"test:e2e": "npm --prefix frontend run test:e2e",
"start:prod": "powershell -ExecutionPolicy Bypass -File scripts/start-prod.ps1",
"backup": "powershell -ExecutionPolicy Bypass -File scripts/backup.ps1",
"restore": "powershell -ExecutionPolicy Bypass -File scripts/restore.ps1"
}
}