-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.47 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.47 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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
{
"name": "restaurant-app",
"version": "1.0.0",
"description": "A modern restaurant management platform with online ordering, reservations, and admin dashboard",
"private": true,
"type": "module",
"scripts": {
"dev": "pnpm --parallel run dev",
"dev:frontend": "pnpm --filter landing dev",
"dev:backend": "cd apps/backend && uv run uvicorn main:app --reload --port 5000",
"build": "pnpm --recursive run build",
"build:frontend": "pnpm --filter landing build",
"build:backend": "cd apps/backend && uv run python -m build",
"test": "pnpm --recursive run test",
"lint": "pnpm --recursive run lint",
"format": "pnpm --recursive run format",
"db:setup": "cd apps/backend && uv run npx prisma generate && uv run npx prisma migrate dev",
"db:studio": "cd apps/backend && uv run npx prisma studio",
"db:seed": "cd apps/backend && uv run python -m scripts.seed_restaurant_data",
"docker:up": "docker-compose up -d",
"docker:down": "docker-compose down",
"docker:logs": "docker-compose logs -f",
"install:all": "pnpm install && cd apps/backend && uv sync"
},
"keywords": [
"restaurant",
"ordering",
"reservations",
"management",
"fastapi",
"react",
"typescript"
],
"author": "Restaurant App Team",
"license": "MIT",
"engines": {
"node": ">=18.0.0",
"pnpm": ">=8.0.0"
},
"packageManager": "pnpm@8.15.0",
"devDependencies": {
"@types/node": "^20.11.0",
"typescript": "^5.3.0"
}
}