-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
31 lines (31 loc) · 904 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
31
{
"name": "root",
"version": "1.0.0",
"private": true,
"devDependencies": {
"lerna": "^3.16.4"
},
"workspaces": {
"packages": [
"packages/*"
],
"nohoist": [
"**/react-native",
"**/react-native/**",
"**/electron",
"**/electron/**"
]
},
"scripts": {
"clean": "rm -rf ./packages/*/node_modules && rm -rf ./node_modules",
"clean-locks": "rm -rf ./packages/*/yarn.lock && rm -rf ./yarn.lock && rm -rf ./packages/*/package-lock.json && rm -rf ./package-lock.json",
"bootstrap": "lerna bootstrap",
"reset": "yarn clean && yarn clean-locks && yarn bootstrap",
"web-dev": "yarn workspace web start",
"web-build": "yarn workspace web build",
"android-dev": "yarn workspace mobile android",
"android-build": "yarn workspace mobile android-build",
"desktop-dev": "yarn workspace desktop electron-dev",
"desktop-build": "yarn workspace desktop electron-pack"
}
}