-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
137 lines (137 loc) · 5.14 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
{
"name": "@ronas-it/react-native-starter",
"description": "React Native + Expo starter template: a demo app with configurations, project structure, testing setup, navigation, and some basic modules.",
"author": "Ronas IT",
"bugs": {
"url": "https://github.com/RonasIT/react-native-starter/issues"
},
"homepage": "https://github.com/RonasIT/react-native-starter/tree/main",
"keywords": [
"react-native",
"template",
"expo",
"typescript"
],
"repository": {
"type": "git",
"url": "https://github.com/RonasIT/react-native-starter.git"
},
"version": "3.4.1",
"main": "expo-router/entry",
"scripts": {
"start": "cross-env APP_ENV=development npx expo start",
"start:prod": "cross-env APP_ENV=production npx expo start",
"build:dev": "npm run lint && eas build --no-wait --non-interactive -p all --profile=development",
"build:debug": "npm run build:dev -- --profile=debug",
"build:prod": "npm run build:dev -- --profile=production",
"update:dev": "npm run lint && cross-env APP_ENV=development eas update --branch development",
"update:prod": "npm run lint && cross-env APP_ENV=production eas update --branch production",
"submit:ios:dev": "cross-env APP_ENV=development eas submit --no-wait -p ios --profile=development",
"submit:ios:prod": "cross-env APP_ENV=production eas submit --no-wait -p ios --profile=production",
"lint": "npx eslint ./",
"format": "npx prettier --write . && npm run lint -- --fix",
"test": "cross-env NO_FLIPPER=1 jest --config jest.config.js --detectOpenHandles",
"prepare": "husky install",
"prepack": "node scripts/prepack.js && npm pkg set 'scripts.postinstall'='npx rimraf app.json scripts && npm pkg delete 'scripts.prepack' 'scripts.postpack' 'scripts.postinstall''",
"postpack": "node scripts/postpack.js && npm pkg delete 'scripts.postinstall'"
},
"dependencies": {
"@expo/metro-config": "^0.10.7",
"@hookform/resolvers": "^2.9.10",
"@react-native-async-storage/async-storage": "1.18.2",
"@react-native-community/hooks": "^2.8.1",
"@react-native-community/netinfo": "^9.3.7",
"@react-navigation/bottom-tabs": "^6.4.3",
"@react-navigation/native": "^6.0.16",
"@react-navigation/stack": "^6.3.7",
"@reduxjs/toolkit": "^1.9.5",
"axios": "^1.2.2",
"axios-observable": "^2.0.0",
"class-transformer": "^0.5.1",
"expo": "^49.0.9",
"expo-application": "~5.3.0",
"expo-constants": "~14.4.2",
"expo-device": "~5.4.0",
"expo-image": "~1.3.2",
"expo-linking": "~5.0.2",
"expo-localization": "~14.3.0",
"expo-notifications": "~0.20.1",
"expo-permissions": "~14.2.1",
"expo-router": "2.0.0",
"expo-secure-store": "~12.3.1",
"expo-splash-screen": "~0.20.5",
"expo-status-bar": "~1.6.0",
"expo-system-ui": "~2.4.0",
"expo-updates": "~0.18.12",
"i18n-js": "^4.2.0",
"immer": "^9.0.12",
"jwt-check-expiry": "^1.0.10",
"lodash": "^4.17.21",
"luxon": "^1.28.0",
"qs": "^6.11.0",
"react": "^18.2.0",
"react-dom": "18.2.0",
"react-hook-form": "^7.31.3",
"react-native": "0.72.4",
"react-native-extended-stylesheet": "^0.12.0",
"react-native-flipper": "^0.193.0",
"react-native-gesture-handler": "~2.12.0",
"react-native-keyboard-aware-scroll-view": "^0.9.5",
"react-native-picker-select": "^8.0.4",
"react-native-reanimated": "~3.3.0",
"react-native-safe-area-context": "4.6.3",
"react-native-screens": "~3.22.0",
"react-native-svg": "13.9.0",
"react-native-svg-transformer": "^1.0.0",
"react-native-ui-lib": "^6.21.2",
"react-native-web": "~0.19.6",
"react-redux": "^8.0.5",
"redux-flipper": "^2.0.2",
"redux-observable": "^2.0.0",
"reflect-metadata": "^0.1.13",
"rxjs": "^7.5.7",
"sentry-expo": "~7.0.0",
"sort-object-keys": "^1.1.3",
"yup": "^0.32.11"
},
"devDependencies": {
"@babel/core": "^7.20.5",
"@testing-library/jest-native": "^5.4.2",
"@testing-library/react-native": "^12.1.2",
"@types/jest": "^29.5.2",
"@types/lodash": "^4.14.182",
"@types/luxon": "^1.27.1",
"@types/node": "16.11.7",
"@types/numeral": "^2.0.2",
"@types/qs": "^6.9.7",
"@types/react": "~18.2.14",
"@types/react-test-renderer": "^18.0.0",
"@types/sort-object-keys": "^1.1.0",
"@types/url-parse": "^1.4.9",
"@typescript-eslint/eslint-plugin": "^6.13.2",
"@typescript-eslint/parser": "^6.13.2",
"cross-env": "^7.0.3",
"eslint": "~8.48.0",
"eslint-config-prettier": "^9.0.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-native": "^4.1.0",
"eslint-plugin-unused-imports": "^3.0.0",
"husky": "^8.0.2",
"jest": "^29.5.0",
"jest-expo": "^48.0.2",
"lint-staged": "^14.0.1",
"prettier": "^3.2.5",
"react-test-renderer": "^18.2.0",
"ts-jest": "^29.1.0",
"type-fest": "^3.0.0",
"typescript": "~5.1.3"
},
"lint-staged": {
"*.{ts,tsx,js,html,json,md}": "prettier --write",
"*.{ts,tsx,js}": "eslint --cache --fix"
}
}