-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 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
76
77
78
{
"name": "duofit",
"version": "1.1.0",
"main": "node_modules/expo/AppEntry.js",
"scripts": {
"start": "expo start",
"android": "expo run:android",
"ios": "expo run:ios",
"web": "expo start --web",
"ts:check": "tsc",
"check-typescript": "tsc --noEmit",
"check-eslint": "eslint './src/**/*{js,ts,jsx,tsx}'",
"lint": "yarn check-typescript && yarn check-eslint",
"release": "standard-version",
"prepare": "husky install",
"postinstall": "husky install"
},
"dependencies": {
"@gorhom/bottom-sheet": "^4.6.1",
"@react-native-firebase/app": "^19.0.0",
"@react-native-picker/picker": "2.6.1",
"@react-navigation/bottom-tabs": "^6.5.7",
"@react-navigation/native": "^6.1.14",
"@react-navigation/native-stack": "^6.9.22",
"@types/react": "~18.2.45",
"babel-plugin-module-resolver": "^5.0.0",
"expo": "~50.0.6",
"expo-build-properties": "~0.5.1",
"expo-modules-autolinking": "~1.1.0",
"expo-status-bar": "~1.11.1",
"firebase": "^10.8.0",
"jest": "^29.3.1",
"jest-expo": "~50.0.2",
"jetifier": "^2.0.0",
"react": "18.2.0",
"react-native": "0.73.4",
"react-native-dropdown-select-list": "^2.0.5",
"react-native-gesture-handler": "~2.14.0",
"react-native-multiple-select": "^0.5.12",
"react-native-reanimated": "~3.6.2",
"react-native-safe-area-context": "4.8.2",
"react-native-screens": "~3.29.0",
"typescript": "^5.3.0"
},
"devDependencies": {
"@babel/core": "^7.20.0",
"@commitlint/cli": "^18.6.1",
"@commitlint/config-conventional": "^18.6.2",
"@testing-library/dom": "^9.3.4",
"@testing-library/jest-native": "^5.4.3",
"@testing-library/react-native": "^12.4.3",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/jest": "^29.5.12",
"@types/react": "~18.2.45",
"@typescript-eslint/eslint-plugin": "^7.0.2",
"@typescript-eslint/parser": "^7.0.2",
"eslint": "^8.56.0",
"eslint-config-universe": "^12.0.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-jest": "^27.9.0",
"eslint-plugin-jest-dom": "^5.1.0",
"eslint-plugin-prettier": "5.0.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-testing-library": "^6.2.0",
"husky": "^8.0.0",
"lint-staged": "^15.2.2",
"prettier": "^3.2.5",
"standard-version": "^9.5.0",
"typescript": "^5.1.3"
},
"private": true,
"lint-staged": {
"**/*.{js,jsx,ts,tsx}": [
"eslint './src/**/*{js,ts,jsx,tsx}' --fix",
"prettier --write './src/**/*{js,ts,jsx,tsx}'"
]
}
}