forked from human-crafted/react-code-share
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
23 lines (23 loc) · 701 Bytes
/
package.json
File metadata and controls
23 lines (23 loc) · 701 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"name": "react-code-share",
"version": "1.0.0",
"author": "Humancrafted",
"license": "MIT",
"private": true,
"workspaces": {
"packages": [
"apps/*",
"packages/*"
]
},
"scripts": {
"run:web": "yarn workspace web start",
"run:mobile": "yarn workspace mobile start",
"reset:modules": "rm -rf node_modules/ yarn.lock apps/*/node_modules",
"reset:yarn": "yarn cache clean",
"reset:rn": "watchman watch-del-all; rm -rf $TMPDIR/react-*; rm -rf $TMPDIR/haste-map-react-native-packager-*",
"reset:cache": "yarn reset:yarn && yarn reset:rn",
"reset": "yarn reset:modules && yarn reset:cache",
"start": "yarn run:web & yarn run:mobile"
}
}