-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.76 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
{
"name": "auth-demo",
"version": "1.0.0",
"scripts": {
"start": "expo start",
"android": "expo start --android",
"ios": "expo start --ios",
"web": "expo start --web",
"test": "jest --watchAll",
"test-ci": "jest --ci",
"test-update": "jest --updateSnapshot --coverage=false",
"lint": "eslint --color --ext .js,.jsx src App.js",
"lint-fix": "npm run lint -- --fix",
"lint-quiet": "npm run lint -- --quiet",
"format": "prettier \"src/**/*{.js,.jsx}\" \"__tests__/**/*{.js,.jsx}\" App.js",
"format-write": "npm run format -- --write",
"format-check": "npm run format -- --check",
"clean-node": "rimraf node_modules"
},
"dependencies": {
"@react-navigation/material-bottom-tabs": "^6.2.28",
"@react-navigation/native": "^6.1.17",
"expo": "^51.0.2",
"expo-application": "~5.9.1",
"expo-auth-session": "~5.5.2",
"expo-crypto": "~13.0.2",
"expo-random": "~14.0.1",
"expo-secure-store": "~13.0.1",
"expo-status-bar": "~1.12.1",
"expo-updates": "~0.25.11",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-native": "0.74.1",
"react-native-gesture-handler": "~2.16.1",
"react-native-paper": "^5.12.3",
"react-native-reanimated": "~3.10.1",
"react-native-safe-area-context": "4.10.1",
"react-native-screens": "3.31.1",
"react-native-vector-icons": "^10.0.3",
"react-native-web": "~0.19.10"
},
"devDependencies": {
"@babel/core": "^7.24",
"@react-native-community/eslint-config": "^3.2.0",
"babel-preset-expo": "~11.0",
"eslint": "^8.57",
"eslint-plugin-prettier": "^5.1.3",
"jest": "^29.7.0",
"jest-expo": "~51.0.1",
"jest-fetch-mock": "^3.0.3",
"prettier": "^3.2",
"react-test-renderer": "18.2.0",
"rimraf": "^5.0"
}
}