-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.95 KB
/
package.json
File metadata and controls
88 lines (88 loc) · 2.95 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
{
"name": "com.alejandrotechnology.rncatemplate",
"version": "0.0.1",
"private": true,
"scripts": {
"android": "react-native run-android",
"ios": "react-native run-ios",
"lint": "eslint .",
"prettier": "prettier --write 'src/**/*.{js,jsx,ts,tsx}'",
"start": "react-native start",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"lint:fix": "eslint . --fix",
"typecheck": "tsc --noEmit",
"pod-cocoa": "cd ios && bundle install",
"pod-install": "cd ios && bundle exec pod install",
"clean-android": "rm -rf android/build android/app/build && cd android && ./gradlew clean && cd ..",
"clean-ios": "rm -rf ios/build ios/Pods ios/Podfile.lock",
"clean-watch": "watchman watch-del-all && watchman shutdown-server",
"clean-node": "rm -rf node_modules bun.lockb",
"claude": "cp -r .ai/ .claude",
"opencode": "cp -r .ai/ .opencode",
"trae": "cp -r .ai/ .trae",
"prepare": "husky"
},
"lint-staged": {
"src/**/*.{ts,tsx}": [
"eslint --fix",
"prettier --write"
]
},
"dependencies": {
"@hookform/resolvers": "5.2.2",
"@react-native-community/datetimepicker": "8.6.0",
"@react-native-firebase/app": "23.0.0",
"@react-native-firebase/auth": "23.0.0",
"@react-native-firebase/firestore": "23.0.0",
"@react-native-firebase/storage": "23.0.0",
"@react-navigation/native": "7.1.31",
"@react-navigation/native-stack": "7.14.2",
"@shopify/flash-list": "2.2.2",
"@tanstack/react-query": "5.90.21",
"axios": "1.13.5",
"jail-monkey": "2.8.4",
"react": "19.2.0",
"react-hook-form": "7.71.2",
"react-native": "0.83.4",
"react-native-config": "1.6.1",
"react-native-fast-image": "8.6.3",
"react-native-gesture-handler": "2.30.0",
"react-native-mmkv": "4.1.2",
"react-native-nitro-modules": "0.33.9",
"react-native-safe-area-context": "5.5.2",
"react-native-screens": "4.24.0",
"react-native-svg": "15.15.4",
"yup": "1.7.1",
"zustand": "5.0.11"
},
"devDependencies": {
"@babel/core": "^7.25.2",
"@babel/preset-env": "^7.25.3",
"@babel/runtime": "^7.25.0",
"@react-native-community/cli": "20.0.0",
"@react-native-community/cli-platform-android": "20.0.0",
"@react-native-community/cli-platform-ios": "20.0.0",
"@react-native/babel-preset": "0.83.4",
"@react-native/eslint-config": "0.83.4",
"@react-native/metro-config": "0.83.4",
"@react-native/typescript-config": "0.83.4",
"@testing-library/jest-native": "5.4.3",
"@testing-library/react-native": "13.3.3",
"@types/jest": "^29.5.13",
"@types/react": "^19.2.0",
"babel-plugin-module-resolver": "5.0.2",
"eslint": "^8.19.0",
"husky": "9.1.7",
"jest": "^29.6.3",
"lint-staged": "16.4.0",
"prettier": "2.8.8",
"react-native-svg-transformer": "1.5.3",
"react-test-renderer": "19.2.0",
"typescript": "^5.8.3"
},
"engines": {
"node": ">=20"
}
}