forked from TelivityAI/haip
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 1.05 KB
/
Copy pathpackage.json
File metadata and controls
32 lines (32 loc) · 1.05 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
{
"name": "haip",
"version": "0.1.0",
"description": "HAIP (Hotel AI Platform) — Open-source, API-first hotel PMS",
"private": true,
"license": "Apache-2.0",
"engines": {
"node": ">=20.0.0",
"pnpm": ">=9.0.0"
},
"packageManager": "pnpm@9.15.4",
"scripts": {
"build": "pnpm -r run build",
"dev": "pnpm --filter @telivityhaip/api run dev",
"lint": "pnpm -r run lint",
"typecheck": "pnpm -r run typecheck",
"test": "pnpm -r run test",
"test:coverage": "pnpm -r run test:coverage",
"seed": "pnpm --filter @telivityhaip/database run seed",
"db:generate": "pnpm --filter @telivityhaip/database run db:generate",
"db:migrate": "pnpm --filter @telivityhaip/database run db:migrate",
"db:studio": "pnpm --filter @telivityhaip/database run db:studio",
"docker:up": "docker compose up -d",
"docker:down": "docker compose down",
"clean": "pnpm -r run clean && rm -rf node_modules"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"eslint": "^9.0.0",
"typescript-eslint": "^8.58.0"
}
}