-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·112 lines (112 loc) · 4.13 KB
/
Copy pathpackage.json
File metadata and controls
executable file
·112 lines (112 loc) · 4.13 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
{
"name": "animationLearning",
"version": "0.0.1",
"private": true,
"scripts": {
"pod-install": "npx pod-install",
"android": "ENVFILE=.env.development npx react-native run-android --mode developmentdebug --appIdSuffix 'dev'",
"ios": "ENVFILE=.env.development npx react-native run-ios --mode Debug",
"start": "react-native start",
"test": "yarn jest --coverage --config=jest.config.js",
"prepare": "husky install",
"lint": "eslint './app/**/*.{js,jsx,ts,tsx}'",
"eslint-fix": "eslint --fix './app/**/*.{js,jsx,ts,tsx}'",
"pretty": "prettier --write './app/**/*.{js,jsx,ts,tsx}'",
"types": "tsc --noEmit",
"spelling": "cspell lint './app/**/*.{js,jsx,ts,tsx}'",
"local-check": "yarn eslint-fix && yarn pretty && yarn types && yarn spelling",
"android:dev": "npx react-native run-android --mode developmentdebug --appIdSuffix 'dev'",
"android:dev-release": "npx react-native run-android --mode developmentrelease --appIdSuffix 'dev'",
"android:stage": "npx react-native run-android --mode stagingdebug --appIdSuffix 'stage'",
"android:stage-release": "npx react-native run-android --mode stagingrelease --appIdSuffix 'stage'",
"android:prod": "npx react-native run-android --mode productiondebug",
"android:prod-release": "npx react-native run-android --mode productionrelease",
"ios:dev": "npx react-native run-ios --scheme AnimationLearning-Development",
"ios:stage": "npx react-native run-ios --scheme AnimationLearning-Staging",
"ios:prod": "npx react-native run-ios --scheme AnimationLearning"
},
"husky": {
"hooks": {
"pre-commit": "yarn lint",
"pre-push": "yarn lint"
}
},
"dependencies": {
"@react-navigation/core": "6.4.17",
"@react-navigation/native": "6.1.18",
"@react-navigation/native-stack": "6.11.0",
"@react-navigation/routers": "6.1.9",
"@react-native/codegen": "0.84.1",
"@reduxjs/toolkit": "2.11.2",
"apisauce": "3.2.2",
"axios": "1.13.6",
"@sentry/react-native": "6.20.0",
"formik": "2.4.9",
"i18next": "26.0.8",
"lodash": "4.18.1",
"react": "19.2.3",
"react-i18next": "17.0.6",
"react-native": "0.84.1",
"react-native-config": "1.5.9",
"react-native-gesture-handler": "2.28.0",
"react-native-localize": "3.7.0",
"react-native-mmkv": "3.3.3",
"react-native-permissions": "4.1.5",
"react-native-safe-area-context": "5.6.1",
"react-native-screens": "4.14.0",
"react-redux": "9.2.0",
"redux-persist": "6.0.0",
"yup": "1.7.1"
},
"devDependencies": {
"@babel/core": "7.25.2",
"@babel/preset-env": "7.25.3",
"@babel/runtime": "7.25.0",
"@react-native-community/cli": "20.1.0",
"@react-native-community/cli-platform-android": "20.1.0",
"@react-native-community/cli-platform-ios": "20.1.0",
"@react-native/babel-preset": "0.84.1",
"@react-native/eslint-config": "0.84.1",
"@react-native/metro-config": "0.84.1",
"@react-native/typescript-config": "0.84.1",
"@react-navigation/devtools": "6.0.27",
"@types/lodash": "4.17.16",
"@types/jest": "29.5.13",
"@types/react": "19.2.0",
"@types/react-test-renderer": "19.1.0",
"@typescript-eslint/eslint-plugin": "8.48.0",
"@typescript-eslint/parser": "8.48.0",
"babel-jest": "29.7.0",
"cspell": "8.17.3",
"babel-plugin-transform-remove-console": "6.9.4",
"eslint": "8.57.1",
"eslint-import-resolver-typescript": "3.6.3",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-jest": "28.8.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-eslint-comments": "3.2.0",
"eslint-plugin-prettier": "5.4.0",
"eslint-plugin-react-native": "5.0.0",
"husky": "8.0.3",
"jest": "29.7.0",
"prettier": "3.5.3",
"react-test-renderer": "19.2.3",
"reactotron-react-native": "5.1.18",
"reactotron-redux": "3.2.1",
"typescript": "5.8.3"
},
"resolutions": {
"@types/react": "19.2.0",
"react-is": "19.1.0",
"@react-native/codegen": "0.84.1",
"react-native-safe-area-context": "5.6.1"
},
"overrides": {
"pretty-format": {
"react-is": "19.1.0"
}
},
"engines": {
"node": ">= 22.11.0"
}
}