-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
31 lines (31 loc) · 949 Bytes
/
package.json
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
{
"private": true,
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"backend:dev": "yarn workspace backend run dev",
"web:dev": "yarn workspace web run dev",
"migrate": "yarn workspace backend migrate",
"worker": "yarn workspace backend worker",
"mobile:dev": "yarn workspace mobile start",
"mobile:pod-install": "yarn workspace mobile pod-install",
"mobile:android": "yarn workspace mobile run android",
"mobile:clean": "yarn workspace mobile run clean",
"mobile:ios": "yarn workspace mobile run ios",
"reset": "rm -rf **/node_modules **/.yarn/cache **/yarn.lock && yarn install",
"heroku-postbuild": "yarn workspace web build && yarn workspace @hylo/shared build:cjs"
},
"engines": {
"node": "^20",
"yarn": "^4.5.0"
},
"dependencies": {
"@hylo/shared": "workspace:*"
},
"devDependencies": {
"typescript": "5.0.4"
},
"packageManager": "yarn@4.5.0"
}