-
Notifications
You must be signed in to change notification settings - Fork 153
/
package.json
70 lines (70 loc) · 2.84 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "react-native-universal-project",
"version": "0.0.1",
"private": true,
"workspaces": {
"packages": [
"packages/*"
],
"nohoist": [
"**/@react-native-async-storage/async-storage",
"**/react",
"**/react-dom",
"**/react-native",
"**/react-native/**",
"**/react-native-codegen",
"**/react-native-dev-menu",
"**/react-native-macos",
"**/react-native-windows"
]
},
"scripts": {
"reset": "find . -type dir -name node_modules | xargs rm -rf && rm -rf yarn.lock",
"android:metro": "yarn workspace @my-app/mobile start",
"android:start": "yarn workspace @my-app/mobile android",
"android:studio": "yarn workspace @my-app/mobile studio",
"ios:metro": "yarn workspace @my-app/mobile start",
"ios:start": "yarn workspace @my-app/mobile ios",
"ios:xcode": "yarn workspace @my-app/mobile xcode",
"ios:pods": "yarn workspace @my-app/mobile pods",
"tv:android:metro": "yarn workspace @my-app/tv start",
"tv:android:start": "yarn workspace @my-app/tv android",
"tv:android:studio": "yarn workspace @my-app/tv studio",
"tv:tvos:metro": "yarn workspace @my-app/tv start",
"tv:tvos:start": "yarn workspace @my-app/tv ios",
"tv:tvos:xcode": "yarn workspace @my-app/tv xcode",
"tv:tvos:pods": "yarn workspace @my-app/tv pods",
"macos:metro": "yarn workspace @my-app/macos start",
"macos:start": "yarn workspace @my-app/macos macos",
"macos:xcode": "yarn workspace @my-app/macos xcode",
"macos:pods": "yarn workspace @my-app/macos pods",
"web:start": "yarn workspace @my-app/web start",
"web:build": "yarn workspace @my-app/web build",
"next:start": "yarn workspace @my-app/next dev",
"next:build": "yarn workspace @my-app/next build",
"next:serve": "yarn workspace @my-app/next start",
"electron:start": "yarn workspace @my-app/electron start",
"electron:package:mac": "yarn workspace @my-app/electron package:mac",
"electron:package:win": "yarn workspace @my-app/electron package:win",
"electron:package:linux": "yarn workspace @my-app/electron package:linux",
"browser-ext:start": "yarn workspace @my-app/browser-ext start",
"browser-ext:build": "yarn workspace @my-app/browser-ext build",
"windows:metro": "yarn workspace @my-app/windows start",
"windows:start": "yarn workspace @my-app/windows windows",
"lint": "ultra -r lint",
"lint:fix": "ultra -r lint:fix",
"test": "ultra -r test",
"typecheck": "ultra -r typecheck"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.29.3",
"@typescript-eslint/parser": "^4.29.3",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-react-app": "^6.2.2",
"eslint-plugin-react-native": "^3.11.0",
"prettier": "^2.3.2",
"typescript": "^4.4.2",
"ultra-runner": "^3.10.5"
}
}