forked from ury-erp/ury
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
24 lines (24 loc) · 855 Bytes
/
Copy pathpackage.json
File metadata and controls
24 lines (24 loc) · 855 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
{
"private": true,
"workspaces": [
"packages/*",
"pos",
"frontend",
"self-order"
],
"scripts": {
"ury-pos-install": "cd urypos && yarn install --check-files",
"ury-pos-build": "cd urypos && yarn build",
"ury-mosaic-install": "cd mosaic && yarn install --check-files",
"ury-mosaic-build": "cd mosaic && yarn build",
"ury-posv2-install": "cd pos && yarn install --check-files",
"ury-posv2-build": "cd pos && yarn build",
"ury-frontend-build": "cd frontend && yarn build",
"ury-self-order-build": "cd self-order && yarn build",
"postinstall": "yarn ury-pos-install && yarn ury-mosaic-install",
"build": "yarn ury-pos-build && yarn ury-mosaic-build && yarn ury-posv2-build && yarn ury-frontend-build && yarn ury-self-order-build"
},
"devDependencies": {
"@types/qz-tray": "^2.2.2"
}
}