-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
118 lines (118 loc) · 3.84 KB
/
package.json
File metadata and controls
118 lines (118 loc) · 3.84 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
106
107
108
109
110
111
112
113
114
115
116
117
118
{
"name": "uniwork-front",
"version": "0.0.1",
"private": true,
"scripts": {
"android": "react-native run-android",
"ios": "react-native run-ios",
"pod-install": "cd ios && if [[ \\\"$(uname -m)\\\" == \\\"arm64\\\" ]]; then arch -x86_64 pod install; else pod install; fi",
"ios-clean": "cd ios && rm -rf Pods Podfile.lock && rm -rf ~/Library/Developer/Xcode/DerivgedData && pod deintegrate && pod setup",
"lint": "eslint .",
"lint:fix": "eslint --fix",
"prettier": "prettier '**/*.{js,jsx,ts,tsx,json,yaml,md}' --check",
"prettier:fix": "prettier '**/*.{js,jsx,ts,tsx,json,yaml,md}' --write",
"format": "prettier --write \"./**/*.{ts,tsx,js,jsx,json}\" --config ./.prettierrc",
"start": "react-native start",
"test": "jest",
"prepare": "husky install",
"check-dependencies": "rnx-align-deps",
"fix-dependencies": "rnx-align-deps --write"
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint --fix",
"prettier --write"
]
},
"dependencies": {
"@react-native-clipboard/clipboard": "^1.10.0",
"@react-native-community/cli-doctor": "^11.3.8",
"@react-navigation/bottom-tabs": "^6.5.9",
"@react-navigation/native": "^6.0.8",
"@react-navigation/native-stack": "^6.9.17",
"@tamagui/animations-react-native": "^1.74.13",
"@tamagui/babel-plugin": "^1.74.13",
"@tamagui/config": "^1.74.13",
"@tanstack/react-query": "^5.28.9",
"axios": "^1.6.8",
"jotai": "^2.7.0",
"metro-react-native-babel-transformer": "^0.77.0",
"react": "18.2.0",
"react-native": "^0.73.0",
"react-native-awesome-slider": "^2.5.1",
"react-native-calendars": "^1.1301.0",
"react-native-controlled-mentions": "^2.2.5",
"react-native-gesture-handler": "^2.14.0",
"react-native-ios-modal": "^0.1.8",
"react-native-linear-gradient": "^2.8.3",
"react-native-reanimated": "^3.6.0",
"react-native-safe-area-context": "^4.8.2",
"react-native-screens": "^3.28.0",
"react-native-svg": "^14.0.0",
"react-native-vector-icons": "^10.0.0",
"react-navigation": "^5.0.0",
"tamagui": "^1.74.13"
},
"devDependencies": {
"@babel/core": "^7.20.0",
"@babel/preset-env": "^7.20.0",
"@babel/runtime": "^7.20.0",
"@react-native/babel-preset": "^0.73.0",
"@react-native/eslint-config": "^0.73.1",
"@react-native/metro-config": "^0.73.0",
"@react-native/typescript-config": "^0.73.1",
"@rnx-kit/align-deps": "^2.4.0",
"@tanstack/eslint-plugin-query": "^5.28.6",
"@trivago/prettier-plugin-sort-imports": "^4.2.0",
"@types/jest": "^29.5.5",
"@types/react": "^18.2.6",
"@types/react-mentions": "^4.1.13",
"@types/react-native-calendars": "^1.1264.4",
"@types/react-native-vector-icons": "^6.4.15",
"@types/react-test-renderer": "^18.0.3",
"@typescript-eslint/eslint-plugin": "^6.7.4",
"@typescript-eslint/parser": "^6.7.4",
"babel-jest": "^29.6.3",
"babel-plugin-module-resolver": "^5.0.0",
"eslint": "^8.19.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-react-native": "^4.1.0",
"eslint-plugin-tsdoc": "^0.2.17",
"husky": "^8.0.0",
"jest": "^29.6.3",
"lint-staged": "^14.0.1",
"prettier": "^2.8.8",
"react-native-svg-transformer": "^1.1.0",
"react-test-renderer": "18.2.0",
"typescript": "^5.0.4"
},
"engines": {
"node": ">=18"
},
"rnx-kit": {
"kitType": "app",
"alignDeps": {
"requirements": [
"react-native@0.73"
],
"capabilities": [
"animation",
"babel-preset-react-native",
"clipboard",
"core",
"core-android",
"core-ios",
"core/metro-config",
"gestures",
"jest",
"navigation/native",
"react",
"react-test-renderer",
"safe-area",
"screens",
"svg"
]
}
}
}