forked from nabla/nabla-react-native
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 1.31 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
{
"name": "nabla-react-native",
"private": true,
"scripts": {
"prepare": "yarn compile",
"compile": "yarn compile-core && yarn compile-messaging-core && yarn compile-messaging-ui && yarn compile-video-call && yarn compile-scheduling",
"compile-core": "yarn --cwd packages/react-native-core compile",
"compile-messaging-core": "yarn --cwd packages/react-native-messaging-core compile",
"compile-messaging-ui": "yarn --cwd packages/react-native-messaging-ui compile",
"compile-video-call": "yarn --cwd packages/react-native-video-call compile",
"compile-scheduling": "yarn --cwd packages/react-native-scheduling compile",
"test": "yarn test-core && yarn test-messaging-core && yarn test-messaging-ui",
"test-core": "yarn --cwd packages/react-native-core test",
"test-messaging-core": "yarn --cwd packages/react-native-messaging-core test",
"test-messaging-ui": "yarn --cwd packages/react-native-messaging-ui test",
"clean": "find . -name \"node_modules\" -type d -prune -exec rm -rf '{}' +"
},
"workspaces": {
"packages": [
"packages/*"
],
"nohoist": [
"**/react-native",
"**/react-native/**",
"**/@react-native-community",
"**/@react-native-community/**",
"**/@nabla",
"**/@nabla/**",
"**/@jest",
"**/@jest/**"
]
}
}