-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
28 lines (28 loc) · 864 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
{
"name": "repack-rn-monorepo",
"version": "0.0.1",
"private": true,
"scripts": {
"concurrent": "concurrently -P 'yarn:start:*(!standalone) {1}'",
"start:products": "yarn workspace products run start",
"start:profile": "yarn workspace profile run start",
"start:standalone:products": "yarn workspace products run start:standalone",
"start:standalone:profile": "yarn workspace profile run start:standalone",
"products:ios": "yarn workspace products run ios",
"profile:ios": "yarn workspace profile run ios",
"start:host": "yarn workspace host run start",
"host:ios": "yarn workspace host run ios"
},
"workspaces": [
"apps/*",
"packages/**/*"
],
"packageManager": "yarn@3.2.4",
"license": "MIT",
"resolutions": {
"@types/react": "^18"
},
"devDependencies": {
"concurrently": "^7.6.0"
}
}