This repository was archived by the owner on Apr 30, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.37 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.37 KB
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
36
{
"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/**"
]
},
"devDependencies": {
"license-checker": "^25.0.1"
}
}