-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 1.05 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
30
31
32
33
34
35
{
"version": "1.0.0",
"name": "fullStackAirBnBClone",
"private": true,
"workspaces": {
"packages": [
"packages/*"
],
"nohoist": [
"**/expo",
"**/expo/**",
"**/metro-bundler-config-yarn-workspaces",
"**/metro-bundler-config-yarn-workspaces/**",
"**/metro-bundler",
"**/metro-bundler/**",
"**/react-native-elements",
"**/react-native-elements/**",
"**/react-native-typescript-transformer",
"**/react-native-typescript-transformer/**",
"**/react-native",
"**/react-native/**"
]
},
"scripts": {
"test": "echo \"Sanity: root test script executed\" && exit 0",
"build:server": "lerna run build --scope={@abb/common,@abb/server}",
"build:web": "lerna run build --scope={@abb/common,@abb/controller,@abb/web}",
"remnode": "rimraf packages/*/node_modules&&rimraf ./node_modules",
"renode": "rimraf packages/*/node_modules&&rimraf ./node_modules&&yarn install",
"rmrfdist": "rimraf packages/*/dist"
},
"devDependencies": {
"lerna": "^3.4.3"
}
}