-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 984 Bytes
/
Copy pathpackage.json
File metadata and controls
37 lines (37 loc) · 984 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
31
32
33
34
35
36
37
{
"name": "snapko",
"version": "0.1.0",
"private": true,
"description": "SnapKO - Local-first, Low-cost, and Compliance-focused F&B Inventory App",
"packageManager": "pnpm@9.12.3",
"scripts": {
"dev": "turbo dev",
"build": "turbo build",
"lint": "turbo lint",
"typecheck": "turbo typecheck",
"db:start": "supabase start",
"db:stop": "supabase stop",
"db:status": "supabase status",
"db:reset": "supabase db reset",
"db:diff": "supabase db diff",
"mobile:start": "pnpm --filter mobile start",
"mobile:android": "pnpm --filter mobile android",
"mobile:ios": "pnpm --filter mobile ios",
"web:dev": "pnpm --filter web-landing dev",
"desktop:dev": "pnpm --filter desktop dev"
},
"devDependencies": {
"supabase": "^1.200.0",
"turbo": "^2.5.6"
},
"engines": {
"node": ">=18.0.0",
"pnpm": ">=9.0.0"
},
"pnpm": {
"overrides": {
"react": "19.1.0",
"react-dom": "19.1.0"
}
}
}