forked from benawad/fullstack-graphql-airbnb-clone
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
30 lines (30 loc) · 778 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
{
"private": true,
"scripts": {
"postinstall": "./postinstall.sh",
"build:server": "lerna run build --scope={@abb/common,@abb/server}",
"build:web": "lerna run build --scope={@abb/common,@abb/controller,@abb/web}"
},
"workspaces": {
"packages": [
"packages/*"
],
"nohoist": [
"**/rimraf",
"**/rimraf/**",
"**/react-native-elements",
"**/react-native-elements/**",
"**/react-native",
"**/react-native/**",
"**/expo",
"**/expo/**",
"**/react-native-typescript-transformer",
"**/react-native-typescript-transformer/**",
"**/metro-bundler-config-yarn-workspaces",
"**/metro-bundler-config-yarn-workspaces/**"
]
},
"devDependencies": {
"lerna": "^2.11.0"
}
}