-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
117 lines (117 loc) · 4.23 KB
/
Copy pathpackage.json
File metadata and controls
117 lines (117 loc) · 4.23 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
{
"name": "WorkTrack",
"version": "0.0.1",
"private": true,
"scripts": {
"android": "react-native run-android",
"ios": "react-native run-ios",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write './**/*.{js,jsx,ts,tsx,css,md,json}' --config ./.prettierrc.js",
"start": "react-native start",
"test": "jest",
"test:unit": "jest --testPathPatterns=__tests__/unit --runInBand",
"test:integration": "jest --testPathPatterns=__tests__/integration --runInBand",
"test:coverage": "jest --coverage",
"generate:feature": "node scripts/generate-feature.js",
"validate:architecture": "node scripts/validate-architecture.js",
"migrate:db": "node scripts/db-migrations.js",
"prepare": "husky",
"postinstall": "patch-package",
"clean": "react-native-clean-project",
"dev:ios": "concurrently --kill-others-on-fail --prefix-colors \"cyan,magenta\" \"firebase emulators:start --only firestore\" \"react-native run-ios\"",
"dev:android": "concurrently --kill-others-on-fail --prefix-colors \"cyan,magenta\" \"firebase emulators:start --only firestore\" \"react-native run-android\""
},
"dependencies": {
"@gorhom/bottom-sheet": "^5.2.14",
"@nozbe/watermelondb": "^0.28.0",
"@react-native-async-storage/async-storage": "^3.1.1",
"@react-native-community/netinfo": "^12.0.1",
"@react-native-firebase/app": "^24.1.1",
"@react-native-firebase/auth": "^24.1.1",
"@react-native-firebase/firestore": "^24.1.1",
"@react-native-google-signin/google-signin": "^16.1.2",
"@react-native-vector-icons/material-design-icons": "^13.1.2",
"@react-navigation/bottom-tabs": "^7.18.2",
"@react-navigation/elements": "^2.3.7",
"@react-navigation/native": "^7.3.3",
"@react-navigation/native-stack": "^7.17.5",
"@reduxjs/toolkit": "^2.12.0",
"@shopify/flash-list": "^2.3.2",
"patch-package": "^8.0.1",
"react": "19.2.7",
"react-native": "^0.86.0",
"react-native-bootsplash": "^7.3.1",
"react-native-gesture-handler": "^3.0.1",
"react-native-paper": "^5.15.3",
"react-native-reanimated": "^4.4.1",
"react-native-safe-area-context": "^5.8.0",
"react-native-screens": "^4.25.2",
"react-native-svg": "^15.15.5",
"react-native-vector-icons": "^10.3.0",
"react-native-worklets": "^0.9.2",
"react-redux": "^9.3.0"
},
"devDependencies": {
"@babel/core": "^7.29.7",
"@babel/plugin-proposal-decorators": "^7.29.7",
"@babel/preset-env": "^7.29.7",
"@babel/runtime": "^7.29.7",
"@eslint/eslintrc": "^3.3.5",
"@eslint/js": "^10.0.1",
"@react-native-community/cli": "^20.1.3",
"@react-native-community/cli-platform-android": "^20.0.0",
"@react-native-community/cli-platform-ios": "^20.0.0",
"@react-native/babel-preset": "^0.86.0",
"@react-native/eslint-config": "^0.86.0",
"@react-native/metro-config": "^0.86.0",
"@react-native/typescript-config": "0.86.0",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-native": "^5.4.3",
"@testing-library/react": "^16.3.2",
"@testing-library/react-native": "^14.0.0",
"@types/jest": "^30.0.0",
"@types/mocha": "^10.0.10",
"@types/react": "^19.2.17",
"@types/react-native-vector-icons": "^6.4.18",
"@types/react-test-renderer": "^19.1.0",
"@typescript-eslint/eslint-plugin": "^8.61.0",
"@typescript-eslint/parser": "^8.61.0",
"babel-plugin-module-resolver": "^5.0.3",
"concurrently": "^10.0.3",
"eslint": "^10.5.0",
"eslint-config-prettier": "^10.1.1",
"eslint-import-resolver-typescript": "^4.4.5",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jest": "^29.15.2",
"eslint-plugin-prettier": "^5.5.6",
"eslint-plugin-react": "^7.37.4",
"eslint-plugin-react-hooks": "^7.1.1",
"eslint-plugin-simple-import-sort": "^13.0.0",
"eslint-plugin-unused-imports": "^4.4.1",
"globals": "^17.6.0",
"husky": "^9.1.7",
"jest": "^30.4.2",
"lint-staged": "^17.0.7",
"prettier": "3.8.4",
"react-dom": "^19.2.7",
"react-native-clean-project": "^4.0.3",
"react-native-dotenv": "^3.4.11",
"react-native-svg-transformer": "^1.5.3",
"react-test-renderer": "19.2.7",
"typescript": "^6.0.3",
"typescript-eslint": "^8.61.0"
},
"engines": {
"node": ">=20"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"*.{ts,tsx}": [
"bash -lc 'tsc --noEmit --pretty false -p tsconfig.json'"
]
}
}