-
Notifications
You must be signed in to change notification settings - Fork 82
/
package.json
executable file
·32 lines (32 loc) · 1.21 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
{
"private": true,
"version": "1.0.0",
"workspaces": {
"packages": [
"packages/*"
]
},
"scripts": {
"push_locales": "cd packages && cd shared && yarn push_locales",
"pull_locales": "cd packages && cd shared && yarn pull_locales",
"postinstall": "patch-package",
"pods": "cd packages && cd mobile && yarn pods",
"icons": "cd packages && cd mobile && yarn icons",
"codegen": "cd packages/@core-js && yarn codegen",
"start:mobile": "cd packages && cd mobile && yarn start",
"start:web": "cd packages && cd web && yarn start",
"run:ios": "cd packages && cd mobile && yarn ios",
"run:android": "cd packages && cd mobile && yarn android",
"build:android": "cd packages && cd mobile && yarn build:android",
"build:android:apk": "cd packages && cd mobile && yarn build:android:apk",
"bump": "yarn pull_locales && cd ../.. && cd packages/mobile && yarn bump",
"rnm": "find . -name \"node_modules\" -type d -prune -exec rm -rf '{}' +",
"fnm": "find . -name \"node_modules\" -type d -prune | xargs du -chs",
"adb": "adb reverse tcp:8081 tcp:8081",
"prepare": "husky install"
},
"dependencies": {},
"devDependencies": {
"husky": "^8.0.0"
}
}