-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
96 lines (96 loc) · 3.13 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": "contentfully",
"version": "0.0.1",
"private": true,
"scripts": {
"android": "react-native run-android",
"ios": "react-native run-ios",
"start": "react-native start",
"test": "jest",
"ts:check": "tsc -p . --noEmit",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"lint:export": "eslint --output-file eslint_report.json --format json src",
"check-spelling": "cspell --config cspell.config.js '**/*.{txt,js,md,ts,tsx,jsx}'",
"pod": "cd ios/ && rm -rf Pods/ && pod install && cd ..",
"clean:android": "cd android && ./gradlew clean && cd ../",
"clean:ios": "cd ios && rm -rf build && xcodebuild clean && cd ../",
"clean:node": "rm -rf node_modules && yarn",
"clean": "yarn clean:ios && yarn clean:node && yarn pod"
},
"dependencies": {
"@expo/react-native-action-sheet": "^4.0.1",
"@gorhom/bottom-sheet": "^4.5.1",
"@react-navigation/bottom-tabs": "^6.5.11",
"@react-navigation/drawer": "^6.6.6",
"@react-navigation/native": "^6.1.9",
"@react-navigation/native-stack": "^6.9.17",
"@tanstack/query-sync-storage-persister": "^5.13.4",
"@tanstack/react-query": "^5.13.4",
"@tanstack/react-query-persist-client": "^5.13.4",
"burnt": "^0.12.1",
"date-fns": "^2.30.0",
"jotai": "^2.6.0",
"ky": "1.1.3",
"nativewind": "^2.0.11",
"react": "18.2.0",
"react-hook-form": "^7.48.2",
"react-native": "0.71.7",
"react-native-gesture-handler": "^2.14.0",
"react-native-linear-gradient": "^2.8.3",
"react-native-localize": "^3.0.4",
"react-native-mmkv": "^2.11.0",
"react-native-reanimated": "^3.6.1",
"react-native-safe-area-context": "^4.8.0",
"react-native-screens": "^3.29.0",
"react-native-svg": "^14.1.0",
"react-native-url-polyfill": "^2.0.0",
"styled-components": "^6.1.1",
"zod": "^3.22.4"
},
"devDependencies": {
"@babel/core": "^7.20.0",
"@babel/preset-env": "^7.20.0",
"@babel/preset-typescript": "^7.18.6",
"@babel/runtime": "^7.20.0",
"@react-native-community/eslint-config": "^3.2.0",
"@testing-library/react-hooks": "^8.0.1",
"@tsconfig/react-native": "^3.0.2",
"@types/jest": "^29.5.11",
"@types/react": "^18.2.43",
"@types/react-native": "^0.72.8",
"@types/react-test-renderer": "^18.0.7",
"@types/styled-components": "^5.1.34",
"@types/styled-components-react-native": "^5.2.5",
"babel-jest": "^29.2.1",
"babel-plugin-transform-remove-console": "^6.9.4",
"cross-fetch": "^3.1.5",
"cspell": "^8.1.3",
"eslint": "^8.55.0",
"eslint-plugin-ft-flow": "^3.0.1",
"jest": "^29.7.0",
"metro-react-native-babel-preset": "0.73.9",
"msw": "^2.0.10",
"prettier": "^3.1.0",
"prettier-eslint": "^16.1.2",
"prettier-plugin-tailwindcss": "^0.5.9",
"react-native-flipper": "^0.212.0",
"react-query-native-devtools": "^4.0.0",
"react-test-renderer": "18.2.0",
"tailwindcss": "3.3.6",
"typescript": "5.3.3"
},
"resolutions": {
"@types/react": "^17"
},
"jest": {
"preset": "react-native",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
}
}