-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
183 lines (183 loc) · 6.18 KB
/
package.json
File metadata and controls
183 lines (183 loc) · 6.18 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
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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
{
"name": "arkham-investigator",
"main": "expo-router/entry",
"version": "2.15.1",
"scripts": {
"start": "expo start",
"reset-project": "node ./scripts/reset-project.js",
"a": "npm run prebuild:android:dev && npm run android",
"a:p": "npm run prebuild:android",
"a:pd": "npm run prebuild:android:dev",
"i": "npm run ios",
"i:d": "npm run ios:device",
"android": "expo run:android",
"ios": "expo run:ios",
"ios:device": "expo run:ios --device",
"web": "expo start --web",
"test": "jest",
"test:watch": "jest --watchAll",
"expo:lint": "expo lint",
"circular": "npx madge --circular slices/",
"t": "npm run ts:check",
"ts:check": "tsc",
"f": "npm run format",
"lint": "npx @biomejs/biome check ./slices ./modules",
"format": "npx @biomejs/biome check --write ./slices ./modules",
"lint:fix": "npx @biomejs/biome lint --write ./slices ./modules",
"prebuild": "expo prebuild",
"prebuild:android:dev": "MODE=development npm run prebuild -- -p android",
"prebuild:android": "npm run prebuild -- -p android",
"prebuild:ios": "npm run prebuild -- -p ios",
"eas:android": "npm run version:increment && npm run prebuild:android && eas build -p android",
"eas:apk": "npm run eas:android -- --profile apk",
"build:modules": "./modules/build.sh",
"build": "npm run build:android && npm run build:ios",
"build:apk": "npm run eas:apk -- --local --clear-cache",
"build:android": "npm run eas:android -- --local --clear-cache",
"deploy:android": "npm run build:android && npm run submit:android",
"build:ios": "npm run prebuild:ios && eas build -p ios --local --clear-cache",
"postbuild:ios": "tsx ./cli/rename-build.ts ipa",
"postbuild:android": "tsx ./cli/rename-build.ts aab",
"postbuild:apk": "tsx ./cli/rename-build.ts apk",
"submit": "npm run submit:android && npm run submit:ios",
"submit:ios": "sh ./cli/submit.sh ios ipa",
"submit:android": "sh ./cli/submit.sh android aab",
"setup:font": "tsx ./cli/update-icon-font.ts",
"setup": "npm run setup:font",
"version:increment": "tsx ./cli/increment-version.ts",
"gradle:clean": "cd android && ./gradlew clean",
"gradle:clean-cache": "rm -rf android/app/build android/.gradle modules/chaos-odds/android/.cxx modules/chaos-odds/android/build/intermediates/cxx",
"gradle:clean-modules": "rm -rf modules/*/android/.cxx modules/*/android/build/intermediates/cxx",
"expo:clear": "expo start -c",
"pod:install": "cd ios && pod install"
},
"jest": {
"preset": "jest-expo"
},
"dependencies": {
"@fanchenbao/react-native-scroll-indicator": "^0.4.0",
"@react-native-async-storage/async-storage": "2.1.2",
"@react-native-community/netinfo": "^11.4.1",
"@react-native-community/slider": "4.5.6",
"@react-navigation/native": "^7.0.14",
"@reduxjs/toolkit": "^2.5.1",
"arkham-divider-data": "^1.1.14",
"arkham-investigator-data": "^2.0.6",
"axios": "^1.11.0",
"domelementtype": "^2.3.0",
"dotenv": "^17.2.1",
"expo": "~53.0.23",
"expo-application": "~6.1.5",
"expo-asset": "~11.1.5",
"expo-audio": "~0.4.9",
"expo-blur": "~14.1.5",
"expo-build-properties": "~0.14.8",
"expo-clipboard": "~7.1.5",
"expo-constants": "~17.1.6",
"expo-file-system": "~18.1.11",
"expo-font": "~13.3.1",
"expo-haptics": "~14.1.4",
"expo-image": "~2.4.1",
"expo-image-manipulator": "~13.1.7",
"expo-keep-awake": "~14.1.4",
"expo-linking": "~7.1.7",
"expo-navigation-bar": "~4.2.8",
"expo-router": "~5.1.7",
"expo-screen-orientation": "~8.1.7",
"expo-splash-screen": "~0.30.10",
"expo-status-bar": "~2.2.3",
"expo-system-ui": "~5.0.11",
"expo-web-browser": "~14.2.0",
"fast-memoize": "^2.5.2",
"fast-shuffle": "^6.1.1",
"html-dom-parser": "^5.1.1",
"html-react-parser": "^5.2.2",
"i18next": "^25.2.1",
"intl-pluralrules": "^2.0.1",
"mathjs": "^14.3.0",
"mime": "^4.1.0",
"mime-db": "^1.54.0",
"moment": "^2.30.1",
"petrovich": "^0.2.1",
"ramda": "^0.30.1",
"ramda-adjunct": "^5.1.0",
"react": "19.0.0",
"react-dom": "19.0.0",
"react-i18next": "^15.4.1",
"react-native": "0.79.5",
"react-native-edge-to-edge": "1.6.0",
"react-native-element-dropdown": "^2.12.4",
"react-native-error-boundary": "^2.0.0",
"react-native-gesture-handler": "~2.24.0",
"react-native-get-random-values": "^1.11.0",
"react-native-gradients": "^2.1.1",
"react-native-haptic-feedback": "^2.3.3",
"react-native-localize": "^3.4.1",
"react-native-navigation-mode": "^1.2.3",
"react-native-reanimated": "~3.17.4",
"react-native-restart": "^0.0.27",
"react-native-safe-area-context": "5.4.0",
"react-native-screens": "~4.11.1",
"react-native-storage": "^1.0.1",
"react-native-svg": "15.11.2",
"react-native-toast-message": "^2.3.3",
"react-native-web": "^0.20.0",
"react-native-webview": "13.13.5",
"react-native-zip-archive": "^7.0.2",
"react-redux": "^9.2.0",
"react-responsive": "^10.0.0",
"redux-devtools-expo-dev-plugin": "^2.0.0",
"redux-persist": "^6.0.0",
"redux-saga": "^1.3.0",
"redux-toolkit-helpers": "^1.0.3",
"rn-statusbar-height": "^2.1.1",
"semver": "^7.7.1",
"styled-components": "^6.1.15",
"uuid": "^11.0.5"
},
"devDependencies": {
"@babel/core": "^7.25.2",
"@biomejs/biome": "1.9.4",
"@commitlint/cli": "^19.8.0",
"@commitlint/config-conventional": "^19.8.0",
"@jest/test-sequencer": "^30.2.0",
"@react-native-community/cli": "^20.0.2",
"@types/color": "^4.2.0",
"@types/fast-shuffle": "^4.5.3",
"@types/jest": "^29.5.12",
"@types/moment": "^2.11.29",
"@types/ramda": "^0.30.2",
"@types/react": "~19.0.0",
"@types/react-test-renderer": "^19.0.0",
"@types/semver": "^7.7.0",
"@types/styled-components-react-native": "^5.2.5",
"baseline-browser-mapping": "^2.9.7",
"jest": "^29.2.1",
"jest-expo": "~53.0.10",
"knip": "^5.63.1",
"lefthook": "^1.11.3",
"react-native-svg-transformer": "^1.5.0",
"react-test-renderer": "19.0.0",
"tsx": "^4.20.3",
"typescript": "^5.3.3"
},
"private": true,
"commitlint": {
"extends": ["@commitlint/config-conventional"]
},
"expo": {
"doctor": {
"reactNativeDirectoryCheck": {
"listUnknownPackages": false,
"exclude": [
"react-native-restart",
"react-native-zip-archive",
"redux-persist"
]
},
"checkGlobalPackageManagerConfig": {
"disabled": true
}
}
}
}