-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
105 lines (105 loc) · 3.3 KB
/
package.json
File metadata and controls
105 lines (105 loc) · 3.3 KB
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
97
98
99
100
101
102
103
104
105
{
"name": "smart-budget",
"version": "1.0.0",
"main": "node_modules/expo/AppEntry.js",
"scripts": {
"start": "expo start",
"android": "expo start --android",
"ios": "expo start --ios",
"web": "expo start --web",
"lint": "eslint . --ext .ts,.tsx ./src -f stylish",
"lint:fix": "eslint . --ext .js,.jsx,.ts,.tsx ./src --fix",
"prepare": "husky install",
"types": "tsc --noemit"
},
"dependencies": {
"@react-native-clipboard/clipboard": "^1.11.2",
"@react-native-community/netinfo": "9.3.10",
"@react-navigation/bottom-tabs": "^6.5.8",
"@react-navigation/native": "^6.1.7",
"@react-navigation/native-stack": "^6.9.13",
"@reduxjs/toolkit": "^1.9.5",
"@shopify/flash-list": "1.4.3",
"axios": "^1.4.0",
"eslint-plugin-unused-imports": "^3.0.0",
"expo": "^49.0.6",
"expo-cli": "^6.3.10",
"expo-linear-gradient": "~12.3.0",
"expo-localization": "~14.3.0",
"expo-splash-screen": "~0.20.5",
"expo-status-bar": "~1.6.0",
"formik": "^2.4.2",
"husky-init": "^8.0.0",
"i": "^0.3.7",
"i18n-js": "4.2.0",
"install": "^0.13.0",
"phosphor-react-native": "^1.1.2",
"react": "18.2.0",
"react-native": "0.72.3",
"react-native-gesture-handler": "~2.12.0",
"react-native-mmkv": "^2.10.1",
"react-native-modal": "^13.0.1",
"react-native-otp-textinput": "^1.1.1",
"react-native-paper": "^5.8.0",
"react-native-progress": "^5.0.0",
"react-native-reanimated": "~3.3.0",
"react-native-responsive-dimensions": "^3.1.1",
"react-native-safe-area-context": "4.6.3",
"react-native-screens": "~3.22.0",
"react-native-svg": "13.9.0",
"react-query": "^3.39.3",
"react-redux": "^8.1.1",
"yup": "^1.2.0"
},
"devDependencies": {
"@babel/core": "^7.20.0",
"@babel/preset-env": "^7.20.0",
"@babel/runtime": "^7.20.0",
"@react-native-community/cli-platform-android": "^11.3.2",
"@react-native-community/eslint-config": "^3.2.0",
"@tsconfig/react-native": "^2.0.2",
"@types/bonjour": "^3.5.10",
"@types/jest": "^29.2.1",
"@types/luxon": "^3.3.0",
"@types/react": "~18.2.14",
"@types/react-native": "^0.72.2",
"@types/react-test-renderer": "^18.0.0",
"@typescript-eslint/eslint-plugin": "^5.50.0",
"@typescript-eslint/parser": "^5.59.9",
"babel-jest": "^29.2.1",
"babel-plugin-module-resolver": "^5.0.0",
"eslint": "^8.42.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.8.0",
"eslint-config-standard-with-typescript": "^35.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-n": "^15.0.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^8.0.3",
"jest": "^29.2.1",
"lint-staged": "^13.2.2",
"metro-react-native-babel-preset": "0.73.9",
"prettier": "^2.8.8",
"react-native-svg-transformer": "^1.0.0",
"react-native-testing-library": "^6.0.0",
"react-test-renderer": "18.2.0",
"typescript": "^5.1.3"
},
"private": true,
"lint-staged": {
"*.{jsx,ts,tsx}": [
"yarn prettify",
"git add .",
"yarn lint:fix"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}