-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.34 KB
/
Copy pathpackage.json
File metadata and controls
45 lines (45 loc) · 1.34 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
37
38
39
40
41
42
43
44
45
{
"name": "clean-react-native",
"version": "0.0.1",
"private": true,
"workspaces": {
"packages": [
"packages/frontend/mobile/*",
"packages/modules/services/*"
],
"nohoist": [
"**/react",
"**/react-dom",
"**/react-native",
"**/react-native-*",
"**/react-native/**",
"**/@react-native-*/*",
"**/@react-*/*"
]
},
"scripts": {
"mobile:start": "yarn workspace @mobile/app start",
"android:start": "yarn workspace @mobile/app android",
"android:studio": "yarn workspace @mobile/app studio",
"ios:start": "yarn workspace @mobile/app ios",
"ios:xcode": "yarn workspace @mobile/app xcode",
"ios:pods": "yarn workspace @mobile/app pods",
"lint": "ultra -r lint",
"lint:fix": "ultra -r lint:fix",
"res:reload": "yarn workspace @mobile/res images",
"reset": "find . -type dir -name node_modules | xargs rm -rf && rm -rf yarn.lock",
"test": "ultra -r test",
"typecheck": "ultra -r typecheck"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.10.1",
"@typescript-eslint/parser": "^5.10.1",
"eslint": "^8.7.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-react-app": "^6.2.2",
"eslint-plugin-react-native": "^4.0.0",
"prettier": "^2.5.1",
"typescript": "^4.5.5",
"ultra-runner": "^3.10.5"
}
}