-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
96 lines (96 loc) · 3.23 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
{
"name": "NERGone",
"version": "0.0.1",
"private": true,
"proxy": "https://us-central1-nerg-one.cloudfunctions.net/",
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx}": "eslint --cache --fix",
"src/**/*.{js,jsx,ts,tsx,css,scss,md}": "prettier --write --ignore-unknown"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"scripts": {
"android": "react-native run-android",
"ios": "react-native run-ios",
"clean-start": "rm -rf node_modules && yarn cache clean && yarn install && cd ios && rm -rf Pods/* && pod install && cd .. && yarn ios",
"lint": "npx eslint --ext .jsx,.js,.tsx,.ts src/",
"start": "react-native start",
"test": "jest",
"prepare": "husky install",
"format:check": "prettier --check ./src",
"format:fix": "npx prettier --write ./src"
},
"dependencies": {
"@react-native-async-storage/async-storage": "^1.17.11",
"@react-native-community/masked-view": "^0.1.11",
"@react-navigation/native": "^6.1.3",
"@react-navigation/stack": "^6.3.12",
"@reduxjs/toolkit": "^1.9.2",
"axios": "^1.3.3",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react-hooks": "^4.6.0",
"firebase": "^9.17.1",
"i18next": "^22.4.9",
"react": "18.2.0",
"react-i18next": "^12.1.5",
"react-native": "0.71.2",
"react-native-bootsplash": "^4.5.0",
"react-native-circular-gradient-progress": "^1.0.6",
"react-native-easy-icon": "^1.0.10",
"react-native-eject": "^0.2.0",
"react-native-gesture-handler": "^2.9.0",
"react-native-linear-gradient": "^2.6.2",
"react-native-modal": "^13.0.1",
"react-native-normalize": "^1.0.1",
"react-native-reanimated": "^2.14.4",
"react-native-safe-area-context": "^4.5.0",
"react-native-screens": "^3.19.0",
"react-native-svg": "^13.8.0",
"react-native-tab-view": "^3.3.4",
"react-native-toast-notifications": "^3.3.1",
"react-native-vector-icons": "^9.2.0",
"react-redux": "^8.0.5",
"redux-devtools-extension": "^2.13.9",
"redux-logger": "^3.0.6",
"redux-persist": "^6.0.0",
"redux-saga": "^1.2.2",
"styled-components": "^5.3.6",
"typesafe-actions": "^5.1.0",
"yup": "^1.0.2"
},
"devDependencies": {
"@babel/core": "^7.20.0",
"@babel/preset-env": "^7.20.0",
"@babel/runtime": "^7.20.0",
"@react-native-community/eslint-config": "^3.2.0",
"@tsconfig/react-native": "^2.0.2",
"@types/jest": "^29.2.1",
"@types/react": "^18.0.24",
"@types/react-native": "^0.71.2",
"@types/react-native-vector-icons": "^6.4.13",
"@types/react-redux": "^7.1.25",
"@types/react-test-renderer": "^18.0.0",
"@types/styled-components": "^5.1.26",
"@types/styled-components-react-native": "^5.2.1",
"@typescript-eslint/eslint-plugin": "^5.51.0",
"@typescript-eslint/parser": "^5.51.0",
"babel-jest": "^29.2.1",
"eslint": "^8.19.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-native": "^4.0.0",
"husky": "^8.0.3",
"jest": "^29.2.1",
"lint-staged": "^13.1.1",
"metro-react-native-babel-preset": "0.73.7",
"prettier": "^2.8.4",
"react-test-renderer": "18.2.0",
"typescript": "4.8.4"
},
"jest": {
"preset": "react-native"
}
}