-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.71 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
{
"name": "bitcoinfees",
"version": "0.0.1",
"main": "src/app.tsx",
"scripts": {
"android": "expo run:android",
"clean": "rm -rf .expo android ios node_modules",
"eslint-check": "eslint src --ext .js,.jsx,.ts,.tsx",
"i18n-check": "sh .github/workflows/check_i18n.sh ./src/i18n/??.ts",
"prettier-check": "prettier --check --debug-check .",
"prettier-fix": "prettier --write .",
"release": "expo run:android --variant release",
"start": "expo start",
"ios": "expo run:ios"
},
"dependencies": {
"@react-native-async-storage/async-storage": "1.18.2",
"@react-navigation/native-stack": "^6.9.17",
"@reduxjs/toolkit": "^2.0.1",
"@types/react": "~18.2.46",
"expo": "^49.0.21",
"expo-background-fetch": "~11.3.0",
"expo-crypto": "~12.4.1",
"expo-haptics": "~12.4.0",
"expo-notifications": "~0.20.1",
"expo-splash-screen": "~0.20.5",
"expo-status-bar": "~1.6.0",
"expo-system-ui": "~2.4.0",
"expo-task-manager": "~11.3.0",
"react": "18.2.0",
"react-native": "0.72.6",
"react-native-dotenv": "^3.4.9",
"react-native-ionicons": "^4.6.5",
"react-native-safe-area-context": "^4.8.2",
"react-native-screens": "^3.29.0",
"react-redux": "^9.0.4",
"redux-persist": "^6.0.0",
"yup": "^1.3.3",
"expo-application": "~5.3.0",
"typescript": "^5.1.3"
},
"devDependencies": {
"@babel/core": "^7.23.7",
"@typescript-eslint/eslint-plugin": "^6.18.1",
"@typescript-eslint/parser": "^6.18.1",
"eslint": "^8.56.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-native": "^4.1.0",
"prettier": "3.2.1",
"typescript": "^5.3.3"
},
"private": true
}