You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: package.json
+13-1Lines changed: 13 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -3,11 +3,23 @@
3
3
"private": true,
4
4
"scripts": {
5
5
"prepare": "husky",
6
-
"build": "pnpm --dir frontend run build && pnpm --dir nextjs-backend run build",
6
+
"dev:backend": "cd backend && uv run main.py",
7
+
"dev:frontend": "pnpm --dir frontend run dev",
8
+
"dev:nextjs-backend": "pnpm --dir nextjs-backend run dev",
9
+
"dev": "concurrently -n backend,frontend,nextjs-backend -c blue,green,magenta \"pnpm run dev:backend\"\"pnpm run dev:frontend\"\"pnpm run dev:nextjs-backend\"",
10
+
"build:frontend": "pnpm --dir frontend run build",
11
+
"build:nextjs-backend": "pnpm --dir nextjs-backend run build",
12
+
"build": "pnpm run build:frontend && pnpm run build:nextjs-backend",
13
+
"start:backend": "cd backend && uv run main.py",
14
+
"start:frontend": "pnpm --dir frontend run next:start",
15
+
"start:nextjs-backend": "pnpm --dir nextjs-backend run start",
16
+
"start": "concurrently -n backend,frontend,nextjs-backend -c blue,green,magenta \"pnpm run start:backend\"\"pnpm run start:frontend\"\"pnpm run start:nextjs-backend\"",
17
+
"prod": "pnpm run build && pnpm run start",
7
18
"typecheck": "pnpm --dir frontend run typecheck && pnpm --dir nextjs-backend run typecheck",
8
19
"build:staged": "pnpm run typecheck && pnpm run build"
0 commit comments