-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.99 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
{
"name": "expo-firebase-auth-realtime-db",
"author": "AstrOOnauta <https://github.com/AstrOOnauta>",
"description": "An Expo Application with Firebase Auth and Firebase Realtime DB.",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"start": "expo start --dev-client",
"android": "expo run:android",
"ios": "expo run:ios",
"web": "expo start --web",
"lint": "eslint . --ext .ts,.tsx,.js,.jsx,.json --max-warnings 0",
"prepare": "husky install",
"test": "jest"
},
"dependencies": {
"@react-native-async-storage/async-storage": "^1.17.10",
"@react-navigation/bottom-tabs": "^6.3.3",
"@react-navigation/native": "^6.0.12",
"@react-navigation/stack": "^6.2.3",
"@types/react": "~18.0.0",
"@types/react-native": "~0.69.1",
"babel-plugin-inline-dotenv": "^1.7.0",
"expo": "~46.0.9",
"expo-splash-screen": "~0.16.2",
"expo-status-bar": "~1.4.0",
"firebase": "9.1.0",
"intl": "^1.2.5",
"react": "18.0.0",
"react-dom": "18.0.0",
"react-native": "0.69.5",
"react-native-gesture-handler": "~2.5.0",
"react-native-safe-area-context": "4.3.1",
"react-native-screens": "~3.15.0",
"react-native-super-grid": "^4.5.0",
"react-native-web": "~0.18.7",
"styled-components": "^5.3.5",
"typescript": "^4.6.3"
},
"devDependencies": {
"@babel/core": "^7.12.9",
"@react-native-community/eslint-config": "^3.1.0",
"@types/jest": "^28.1.8",
"@types/react-test-renderer": "^18.0.0",
"@types/styled-components-react-native": "^5.1.3",
"@typescript-eslint/eslint-plugin": "^5.35.1",
"eslint": "^8.23.0",
"eslint-config-prettier": "^8.5.0",
"husky": "^8.0.1",
"jest": "^29.0.1",
"jest-expo": "^46.0.1",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1",
"react-test-renderer": "17",
"ts-jest": "^28.0.8",
"ts-node": "^10.9.1"
},
"private": true,
"lint-staged": {
"*.{ts,tsx,js,jsx,json}": "eslint --cache --fix",
"*.{js,css,md}": "prettier --write"
}
}