forked from kholiqcode/react-native-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
138 lines (138 loc) · 5.58 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
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
{
"name": "boilerplate",
"version": "1.2.0",
"private": true,
"scripts": {
"prepare": "husky install",
"run:android-debug": "npx react-native run-android --variant=devdebug",
"run:android-staging": "npx react-native run-android --variant=stagingdebug",
"run:android-prod": "npx react-native run-android --variant=proddebug",
"run:ios-debug": "ENVFILE=.env.development npx react-native run-ios",
"run:ios-staging": "npx react-native run-ios --scheme \"Boilerplate Staging\"",
"run:ios-prod": "npx react-native run-ios --scheme \"Boilerplate Prod\"",
"build:android-prod": "cd android && ./gradlew assembleProdRelease",
"android:beta": "cd android && fastlane beta",
"android:local": "adb reverse tcp:8081 tcp:8081",
"start": "react-native start --reset-cache",
"release": "standard-version",
"test": "jest --verbose",
"test:cov": "jest --verbose --coverage",
"test:update": "jest --verbose --coverage --updateSnapshot",
"test:watch": "jest --verbose --watch",
"test:coverage": "jest --verbose --coverage && open ./coverage/lcov-report/index.html",
"check-types": "tsc --noemit",
"eslint": "eslint . --ext .js,.jsx,.ts,.tsx src/",
"lint": "yarn eslint ; yarn check-types",
"lint:fix": "eslint --ext .tsx --ext .ts src/ --fix",
"format": "prettier --check ./src",
"format:fix": "prettier --write ./src",
"build:e2e-ios-dev-debug": "detox build -c ios.sim.dev.debug",
"test:e2e-ios-dev-debug": "detox test -c ios.sim.dev.debug",
"build:e2e-ios-staging-debug": "detox build -c ios.sim.staging.debug",
"test:e2e-ios-staging-debug": "detox test -c ios.sim.staging.debug",
"build:e2e-ios-prod-debug": "detox build -c ios.sim.prod.debug",
"test:e2e-ios-prod-debug": "detox test -c ios.sim.prod.debug",
"build:e2e-android-dev-debug": "detox build -c android.sim.dev.debug",
"test:e2e-android-dev-debug": "detox test -c android.sim.dev.debug",
"build:e2e-android-staging-debug": "detox build -c android.sim.staging.debug",
"test:e2e-android-staging-debug": "detox test -c android.sim.staging.debug",
"build:e2e-android-prod-debug": "detox build -c android.sim.prod.debug",
"test:e2e-android-prod-debug": "detox test -c android.sim.prod.debug"
},
"dependencies": {
"@datadog/mobile-react-native": "^1.0.0-rc9",
"@datadog/mobile-react-navigation": "^1.0.0-rc9",
"@jest/globals": "^28.1.0",
"@notifee/react-native": "^5.3.0",
"@react-native-async-storage/async-storage": "^1.17.5",
"@react-native-community/netinfo": "^8.3.0",
"@react-native-firebase/analytics": "^14.11.0",
"@react-native-firebase/app": "^14.11.0",
"@react-native-firebase/crashlytics": "^14.11.0",
"@react-native-firebase/in-app-messaging": "^14.11.0",
"@react-native-firebase/installations": "^14.11.0",
"@react-native-firebase/messaging": "^14.11.0",
"@react-native-firebase/remote-config": "^14.11.0",
"@react-native-masked-view/masked-view": "^0.2.6",
"@react-navigation/bottom-tabs": "^6.3.1",
"@react-navigation/native": "^6.0.10",
"@react-navigation/native-stack": "^6.6.2",
"@react-navigation/stack": "^6.2.1",
"@reduxjs/toolkit": "^1.8.2",
"axios": "^0.27.2",
"i18next": "^21.8.4",
"native-base": "^3.4.6",
"patch-package": "^6.4.7",
"promise-polyfill": "^8.2.3",
"react": "17.0.2",
"react-hook-form": "^7.32.1",
"react-i18next": "^11.16.9",
"react-native": "0.68.2",
"react-native-config": "^1.4.6",
"react-native-fast-image": "^8.5.11",
"react-native-gesture-handler": "^2.4.2",
"react-native-reanimated": "^2.8.0",
"react-native-restart": "^0.0.24",
"react-native-safe-area-context": "^4.2.5",
"react-native-screens": "^3.13.1",
"react-native-svg": "^12.3.0",
"react-redux": "^8.0.2",
"redux": "^4.2.0",
"redux-logger": "^3.0.6",
"redux-persist": "^6.0.0"
},
"devDependencies": {
"@babel/core": "^7.12.9",
"@babel/preset-env": "^7.18.2",
"@babel/preset-react": "^7.17.12",
"@babel/runtime": "^7.12.5",
"@commitlint/cli": "^17.0.2",
"@commitlint/config-conventional": "^17.0.2",
"@jest/types": "^28.1.0",
"@react-native-community/eslint-config": "^2.0.0",
"@testing-library/react-hooks": "^8.0.0",
"@testing-library/react-native": "^9.1.0",
"@types/jest": "^26.0.24",
"@types/react-native": "^0.67.3",
"@types/react-native-dotenv": "^0.2.0",
"@types/react-test-renderer": "^17.0.1",
"@types/redux-logger": "^3.0.9",
"@types/redux-persist": "^4.3.1",
"@typescript-eslint/eslint-plugin": "^5.26.0",
"@typescript-eslint/parser": "^5.26.0",
"abort-controller": "^3.0.0",
"babel-jest": "^27.0.0",
"babel-plugin-module-resolver": "^4.1.0",
"cross-fetch": "^3.1.5",
"detox": "^19.7.1",
"eslint": "^8.16.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest-dom": "^4.0.2",
"husky": "^8.0.1",
"jest": "^27.0.0",
"jest-fetch-mock": "^3.0.3",
"metro-react-native-babel-preset": "^0.67.0",
"mockdate": "^3.0.5",
"msw": "^0.42.1",
"prettier": "^2.6.2",
"react-native-flipper": "^0.146.1",
"react-native-svg-transformer": "^1.0.0",
"react-test-renderer": "^17.0.0",
"redux-flipper": "^2.0.1",
"standard-version": "^9.5.0",
"ts-jest": "^28.0.3",
"typescript": "^4.7.2",
"whatwg-fetch": "^3.6.2"
},
"resolutions": {
"@types/react": "^17"
},
"engines": {
"node": ">=14",
"yarn": ">= 1.22",
"npm": "Please use Yarn"
}
}