-
Notifications
You must be signed in to change notification settings - Fork 97
/
package.json
75 lines (75 loc) · 2.54 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
{
"name": "react-native-boilerplate",
"version": "2.3.0",
"main": "node_modules/expo/AppEntry.js",
"private": true,
"scripts": {
"clean": "rm -rf node_modules package-lock.json && npm install",
"start": "NODE_ENV=production npx expo start -c",
"start:dev": "NODE_ENV=development npx expo start -c",
"android": "NODE_ENV=production npx expo start --android",
"android:dev": "NODE_ENV=development npx expo start --android",
"ios": "NODE_ENV=production npx expo start --ios",
"ios:dev": "NODE_ENV=development npx expo start --ios",
"doctor:dev": "EXPO_NO_DOTENV=1 dotenv -e .env.development -- npx expo-doctor",
"format": "prettier --config .prettierrc src/**/*.{ts,tsx} --write",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"test": "jest --verbose --passWithNoTests",
"test:watch": "jest --verbose --passWithNoTests --watch",
"prepare": "husky"
},
"dependencies": {
"@gorhom/bottom-sheet": "^5",
"@react-native-async-storage/async-storage": "1.23.1",
"@react-navigation/bottom-tabs": "^6.5.20",
"@react-navigation/drawer": "^6.6.15",
"@react-navigation/native": "^6.1.17",
"@react-navigation/native-stack": "^6.9.26",
"@reduxjs/toolkit": "^2.2.3",
"babel-plugin-module-resolver": "^5.0.2",
"expo": "^52.0.0",
"expo-asset": "~11.0.1",
"expo-constants": "~17.0.3",
"expo-crypto": "~14.0.1",
"expo-font": "~13.0.1",
"expo-image": "~2.0.2",
"expo-linear-gradient": "~14.0.1",
"expo-splash-screen": "~0.29.13",
"expo-status-bar": "~2.0.0",
"expo-updates": "~0.26.9",
"react": "18.3.1",
"react-native": "0.76.3",
"react-native-gesture-handler": "~2.20.2",
"react-native-reanimated": "~3.16.1",
"react-native-safe-area-context": "4.12.0",
"react-native-screens": "~4.1.0",
"react-redux": "^9.1.2",
"redux-logger": "^3.0.6"
},
"devDependencies": {
"@babel/core": "^7.24.5",
"@testing-library/react-native": "^12.9.0",
"@types/jest": "^29.5.14",
"@types/react": "~18.3.12",
"@types/redux-logger": "^3.0.13",
"@typescript-eslint/eslint-plugin": "^6.11.0",
"@typescript-eslint/parser": "^6.11.0",
"eslint": "^8.56.0",
"eslint-config-universe": "^12.0.1",
"eslint-plugin-prettier": "^5.1.3",
"husky": "^9.0.11",
"jest": "^29.7.0",
"jest-expo": "~52.0.2",
"lint-staged": "^15.2.2",
"prettier": "^3.2.5",
"ts-node": "^10.9.2",
"typescript": "~5.3.3"
},
"expo": {
"doctor": {
"reactNativeDirectoryCheck": {
"listUnknownPackages": false
}
}
}
}