-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 1.26 KB
/
package.json
File metadata and controls
26 lines (26 loc) · 1.26 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
25
26
{
"name": "tabby-root",
"private": true,
"scripts": {
"prepare": "husky",
"dev:backend": "cd backend && uv run main.py",
"dev:frontend": "pnpm --dir frontend run dev",
"dev:nextjs-backend": "pnpm --dir nextjs-backend run dev",
"dev": "concurrently -n backend,frontend,nextjs-backend -c blue,green,magenta \"pnpm run dev:backend\" \"pnpm run dev:frontend\" \"pnpm run dev:nextjs-backend\"",
"build:frontend": "pnpm --dir frontend run build",
"build:nextjs-backend": "pnpm --dir nextjs-backend run build",
"build": "pnpm run build:frontend && pnpm run build:nextjs-backend",
"start:backend": "cd backend && uv run main.py",
"start:frontend": "pnpm --dir frontend run next:start",
"start:nextjs-backend": "pnpm --dir nextjs-backend run start",
"start": "concurrently -n backend,frontend,nextjs-backend -c blue,green,magenta \"pnpm run start:backend\" \"pnpm run start:frontend\" \"pnpm run start:nextjs-backend\"",
"prod": "pnpm run build && pnpm run start",
"typecheck": "pnpm --dir frontend run typecheck && pnpm --dir nextjs-backend run typecheck",
"build:staged": "pnpm run typecheck && pnpm run build"
},
"devDependencies": {
"concurrently": "^9.2.1",
"husky": "^9.1.7",
"lint-staged": "^15.4.3"
}
}