forked from byCedric/expo-monorepo-example
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
24 lines (24 loc) · 832 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
{
"private": true,
"name": "@dineden/monorepo",
"scripts": {
"postinstall": "expo-yarn-workspaces check-workspace-dependencies",
"build": "yarn workspaces run build",
"test": " yarn workspaces run test",
"managed": "yarn workspace @dineden/app-managed expo start -c",
"client": "yarn workspace @dineden/client expo start -c",
"merchant": "yarn workspace @dineden/merchant expo start -c",
"manager": "yarn workspace @dineden/manager expo start -c",
"connect": "ssh -R 5001:localhost:5001 [email protected]",
"ngrok": "cd private && ngrok http 5001",
"serve": "cd server/functions && nodemon -e ts --exec 'npm run serve'"
},
"workspaces": [
"apps/*",
"packages/*"
],
"devDependencies": {
"@tsconfig/recommended": "^1.0.1",
"expo-yarn-workspaces": "^1.5.2"
}
}