-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
24 lines (24 loc) · 1.5 KB
/
package.json
File metadata and controls
24 lines (24 loc) · 1.5 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{
"name": "fasttauri",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"backend:venv": "python -m venv apps/backend-fastapi/.venv",
"backend:install": "call apps\\\\backend-fastapi\\\\.venv\\\\Scripts\\\\python.exe -m pip install -r apps/backend-fastapi/requirements.txt",
"backend:dev": "call apps\\\\backend-fastapi\\\\.venv\\\\Scripts\\\\uvicorn.exe main:app --reload --app-dir apps/backend-fastapi",
"backend:build": "call apps\\\\backend-fastapi\\\\.venv\\\\Scripts\\\\pyinstaller.exe --noconfirm --onefile --noconsole apps/backend-fastapi/main.py --distpath apps/backend-fastapi/dist --workpath apps/backend-fastapi/build",
"frontend-react:install": "pnpm --prefix ./apps/frontend-react install",
"frontend-react:dev": "pnpm --prefix ./apps/frontend-react tauri dev",
"copy-sidecar:react": "copy /Y .\\apps\\backend-fastapi\\dist\\main.exe .\\apps\\frontend-react\\src-tauri\\bin\\api\\api-x86_64-pc-windows-msvc.exe",
"frontend-nextjs:install": "pnpm --prefix ./apps/frontend-nextjs install",
"frontend-nextjs:dev": "pnpm --prefix ./apps/frontend-nextjs tauri dev",
"frontend-nextjs:build": "pnpm --prefix ./apps/frontend-nextjs tauri build",
"copy-sidecar:nextjs": "copy /Y .\\apps\\backend-fastapi\\dist\\main.exe .\\apps\\frontend-nextjs\\src-tauri\\bin\\api\\api-x86_64-pc-windows-msvc.exe"
},
"keywords": [],
"author": "",
"license": "ISC",
"packageManager": "pnpm@10.10.0"
}