-
Notifications
You must be signed in to change notification settings - Fork 84
/
package.json
56 lines (56 loc) · 1.76 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
{
"name": "super-app-showcase",
"version": "0.0.1",
"license": "MIT",
"private": true,
"packageManager": "[email protected]",
"engines": {
"node": ">=22"
},
"engineStrict": true,
"scripts": {
"start:host": "pnpm --filter host start",
"start:booking": "pnpm --filter booking start",
"start:shopping": "pnpm --filter shopping start",
"start:dashboard": "pnpm --filter dashboard start",
"start:standalone:dashboard": "pnpm --filter dashboard start:standalone",
"start:auth": "pnpm --filter auth start",
"run:host:ios": "pnpm --filter host ios",
"run:host:android": "pnpm --filter host android",
"run:dashboard:ios": "pnpm --filter dashboard ios",
"run:dashboard:android": "pnpm --filter dashboard android",
"pods": "pnpm -r pods",
"pods:update": "pnpm -r pods:update",
"start": "mprocs",
"typecheck": "pnpm -r typecheck",
"lint": "pnpm -r lint",
"test": "pnpm -r test",
"adbreverse": "adb reverse tcp:8081 tcp:8081 && adb reverse tcp:9000 tcp:9000 && adb reverse tcp:9001 tcp:9001 && adb reverse tcp:9002 tcp:9002 && adb reverse tcp:9003 tcp:9003",
"align-deps": "pnpm -r align-deps",
"check-deps": "pnpm -r check-deps"
},
"dependencies": {
"mprocs": "^0.7.1"
},
"pnpm": {
"overrides": {
"@react-native/dev-middleware": "0.76.1"
},
"patchedDependencies": {
"@react-native/community-cli-plugin": "patches/@react-native__community-cli-plugin.patch",
"react-native-paper": "patches/react-native-paper.patch"
},
"packageExtensions": {
"@module-federation/data-prefetch": {
"peerDependenciesMeta": {
"react-dom": {
"optional": true
}
}
}
},
"allowedDeprecatedVersions": {
"eslint": "8"
}
}
}