-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
29 lines (29 loc) · 1.04 KB
/
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
{
"name": "mono-react-native",
"version": "0.0.1",
"private": true,
"description": "React-native Code Share with mono-repo",
"repository": "https://github.com/devethan/mono-react-native.git",
"author": "Ethan Lee",
"license": "MIT",
"scripts": {
"mobile:ios": "lerna run ios --scope @enoveh/dailist-mobile --stream && yarn run ui:start",
"mobile:android": "lerna run android --scope @enoveh/dailist-mobile --stream && yarn run ui:start",
"storybook:ios": "lerna run ios --scope @enoveh/storybook --stream && yarn run ui:start",
"storybook:android": "lerna run android --scope @enoveh/storybook --stream && yarn run ui:start",
"ui:start": "lerna run start --scope @enoveh/uikit --include-dependencies --stream",
"ui:build": "lerna run build --scope @enoveh/uikit --include-dependencies --stream",
"test": "lerna run test --stream",
"clean": "lerna clean --yes"
},
"devDependencies": {
"lerna": "^3.22.1"
},
"workspaces": {
"packages": [
"apps/*",
"packages/*"
],
"nohoist": []
}
}