-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
98 lines (98 loc) · 3.62 KB
/
package.json
File metadata and controls
98 lines (98 loc) · 3.62 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
{
"name": "BattleDex",
"version": "0.0.1",
"private": true,
"scripts": {
"android": "react-native run-android",
"release:android": "ENVFILE=.env.dev react-native run-android --mode=release",
"build:android": "ENVFILE=.env.prod react-native build-android --mode=release",
"mock:android": "ENVFILE=.env.mock npx react-native run-android",
"dev:android": "ENVFILE=.env.dev npx react-native run-android",
"mock:ios": "ENVFILE=.env.mock npx react-native run-ios",
"ios": "react-native run-ios",
"dev:ios": "ENVFILE=.env.dev npx react-native run-ios",
"build:ios": "ENVFILE=.env.prod react-native build-ios --mode=release",
"lint": "eslint .",
"start": "react-native start",
"dev:start": "ENVFILE=.env.dev npx react-native start",
"mock:start": "ENVFILE=.env.mock npx react-native start --reset-cache",
"emul:list": "emulator -list-avds",
"emul:start": "emulator -avd $(emulator -list-avds | head -n 1)",
"test": "jest",
"lint:fix": "eslint . --fix ",
"format": "prettier --write .",
"clean": "watchman watch-del-all && cd android && ./gradlew clean && cd ..",
"postinstall": "patch-package"
},
"dependencies": {
"@gorhom/bottom-sheet": "^5.2.8",
"@noble/hashes": "^2.0.1",
"@op-engineering/op-sqlite": "^15.1.1",
"@react-native-masked-view/masked-view": "^0.3.0",
"@react-native-menu/menu": "^2.0.0",
"@react-native-segmented-control/segmented-control": "^2.5.7",
"@react-native/new-app-screen": "0.83.2",
"@react-navigation/bottom-tabs": "^7.12.0",
"@react-navigation/native": "^7.1.28",
"@react-navigation/native-stack": "^7.6.2",
"@react-navigation/stack": "^7.4.2",
"@shopify/react-native-skia": "^2.3.13",
"babel-plugin-module-resolver": "^5.0.2",
"lottie-react-native": "^7.3.4",
"mobx": "^6.15.0",
"mobx-react-lite": "^4.1.1",
"node-forge": "^1.3.3",
"react": "19.2.0",
"react-native": "^0.83.2",
"react-native-config": "^1.6.0",
"react-native-gesture-handler": "^2.29.1",
"react-native-linear-gradient": "^2.8.3",
"react-native-localize": "^3.6.0",
"react-native-mmkv": "^4.1.2",
"react-native-nitro-modules": "^0.33.7",
"react-native-reanimated": "^4.2.0",
"react-native-reanimated-skeleton": "^1.6.0",
"react-native-safe-area-context": "^5.6.0",
"react-native-screens": "^4.11.1",
"react-native-skeleton-placeholder": "^5.2.4",
"react-native-svg": "^15.15.1",
"react-native-vector-icons": "^10.3.0",
"react-native-worklets": "^0.7.0"
},
"devDependencies": {
"@babel/core": "^7.25.2",
"@babel/preset-env": "^7.25.3",
"@babel/runtime": "^7.25.0",
"@react-native-community/cli": "^20.1.1",
"@react-native-community/cli-platform-android": "^20.1.1",
"@react-native-community/cli-platform-ios": "^20.1.1",
"@react-native/babel-preset": "^0.83.2",
"@react-native/eslint-config": "0.83.2",
"@react-native/metro-config": "^0.83.2",
"@react-native/typescript-config": "0.83.2",
"@testing-library/react-native": "^12.6.1",
"@types/jest": "^29.5.13",
"@types/node-forge": "^1.3.14",
"@types/react": "^19.1.1",
"@types/react-native-vector-icons": "^6.4.18",
"@types/react-test-renderer": "^19.1.0",
"eslint": "^8.19.0",
"jest": "^29.2.1",
"patch-package": "^8.0.1",
"prettier": "2.8.8",
"react-test-renderer": "19.2.0",
"typescript": "^5.8.3"
},
"overrides": {
"react-native-skeleton-placeholder": {
"@react-native-masked-view/masked-view": "^0.3.2"
},
"fast-xml-parser": "^5.3.4"
},
"engines": {
"node": ">=20"
},
"op-sqlite": {
"sqlcipher": false
}
}