-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (30 loc) · 807 Bytes
/
package.json
File metadata and controls
31 lines (30 loc) · 807 Bytes
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
{
"name": "flight-schedule-pro",
"version": "1.0.0",
"private": true,
"description": "Weather Cancellation & AI Rescheduling System for Flight Schools",
"scripts": {
"dev": "pnpm --filter web dev",
"build": "pnpm --filter web build",
"lint": "pnpm -r lint",
"type-check": "pnpm -r type-check",
"test": "pnpm -r test",
"db:migrate": "pnpm --filter database prisma migrate dev",
"db:push": "pnpm --filter database prisma db push",
"db:studio": "pnpm --filter database prisma studio",
"db:seed": "pnpm --filter database prisma db seed"
},
"keywords": [
"flight-school",
"weather",
"ai",
"scheduling",
"aviation"
],
"author": "Flight Schedule Pro",
"license": "MIT",
"engines": {
"node": ">=20.0.0",
"pnpm": ">=8.0.0"
}
}