-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 975 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 975 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
{
"name": "khpfront",
"description": "Kitchen Hospitality Platform frontend for managing restaurant and commercial kitchen inventory.",
"private": true,
"scripts": {
"build": "turbo run build",
"build:web": "turbo run build --filter=web",
"build:pwa": "turbo run build --filter=pwa",
"dev": "turbo run dev",
"dev:web": "turbo run dev --filter=web",
"dev:pwa": "turbo run dev:host --filter=pwa",
"lint": "turbo run lint",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"check-types": "turbo run check-types",
"introspect": "turbo run introspect",
"test": "turbo run test"
},
"devDependencies": {
"lefthook": "^1.11.14",
"prettier": "^3.5.3",
"turbo": "^2.5.4",
"typescript": "5.8.2"
},
"engines": {
"node": ">=18"
},
"packageManager": "npm@11.3.0",
"workspaces": [
"apps/*",
"packages/*"
],
"dependencies": {
"react-day-picker": "^9.11.0",
"zustand": "^5.0.8"
}
}