-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
110 lines (110 loc) · 3.65 KB
/
package.json
File metadata and controls
110 lines (110 loc) · 3.65 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
{
"name": "@ronas-it/react-native-common-modules",
"version": "0.0.0",
"license": "MIT",
"scripts": {
"lint": "npx tsc && cross-env npx eslint ./",
"format": "npx prettier --write . && npm run lint -- --fix",
"deps:sync": "npx syncpack fix-mismatches",
"release": "npx nx run lib:nx-release-publish",
"g:library": "npx nx g @nx/expo:lib --skipPackageJson --unitTestRunner=none",
"g:component": "npx nx g @nx/expo:component component --export --flat --skipTests --directory=lib/${npm_config_name}",
"g:subcomponent": "npx nx g @nx/expo:component component --export=false --flat --skipTests --directory=lib/components/${npm_config_name}",
"prepare": "husky"
},
"private": true,
"dependencies": {
"@expo/metro-config": "~54.0.2",
"@expo/metro-runtime": "~6.1.2",
"@reduxjs/toolkit": "^2.9.0",
"expo": "^54.0.0",
"expo-constants": "~18.0.9",
"expo-device": "~8.0.9",
"expo-image-picker": "~17.0.8",
"expo-linking": "~8.0.8",
"expo-localization": "~17.0.7",
"expo-modules-core": "^3.0.21",
"expo-notifications": "~0.32.12",
"expo-router": "~6.0.12",
"expo-splash-screen": "~31.0.10",
"expo-status-bar": "~3.0.8",
"expo-updates": "~29.0.12",
"i18n-js": "~4.5.1",
"lodash-es": "^4.17.21",
"metro-config": "^0.83.3",
"react": "19.1.0",
"react-dom": "19.1.0",
"react-native": "0.81.4",
"react-native-safe-area-context": "~5.6.0",
"react-native-screens": "~4.16.0",
"react-native-svg": "15.12.1",
"react-native-svg-transformer": "1.5.1",
"tslib": "^2.8.1"
},
"devDependencies": {
"@clerk/clerk-expo": "^2.19.18",
"@clerk/types": "^4.101.11",
"@eslint/compat": "^1.4.0",
"@eslint/eslintrc": "^3.3.1",
"@eslint/js": "^9.37.0",
"@expo/cli": "^54.0.0",
"@nx/eslint": "21.6.4",
"@nx/eslint-plugin": "21.6.4",
"@nx/expo": "21.6.4",
"@nx/jest": "^21.6.4",
"@nx/js": "21.6.4",
"@nx/workspace": "21.6.4",
"@pusher/pusher-websocket-react-native": "^1.3.1",
"@react-native-community/cli-server-api": "^20.0.2",
"@react-native/js-polyfills": "^0.82.0",
"@ronas-it/nx-generators": "^0.17.0",
"@stylistic/eslint-plugin": "^5.4.0",
"@types/lodash-es": "^4.17.12",
"@types/node": "24.7.2",
"@types/react": "~19.1.10",
"@typescript-eslint/eslint-plugin": "^8.46.0",
"@typescript-eslint/parser": "^8.46.0",
"babel-preset-expo": "~54.0.0",
"cross-env": "^10.1.0",
"eslint": "^9.37.0",
"eslint-config-prettier": "^10.1.8",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-import": "2.32.0",
"eslint-plugin-jsx-a11y": "6.10.2",
"eslint-plugin-react": "7.37.5",
"eslint-plugin-react-hooks": "^7.0.0",
"eslint-plugin-unused-imports": "^4.2.0",
"globals": "^16.4.0",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"metro": "^0.83.1",
"metro-react-native-babel-transformer": "^0.77.0",
"nx": "21.6.4",
"prettier": "^3.6.2",
"pusher-js": "^8.4.0",
"reactotron-react-native": "^5.1.17",
"reactotron-redux": "^3.2.1",
"syncpack": "^13.0.4",
"tsc-files": "^1.1.4",
"typescript": "~5.9.2",
"typescript-eslint": "^8.46.0"
},
"peerDependencies": {
"@pusher/pusher-websocket-react-native": "^1.3.1",
"pusher-js": "^8.4.0"
},
"optionalDependencies": {
"@nx/nx-darwin-arm64": "21.6.4",
"@nx/nx-darwin-x64": "21.6.4",
"@nx/nx-linux-x64-gnu": "21.6.4",
"@nx/nx-win32-x64-msvc": "21.6.4"
},
"workspaces": [
"apps/*"
],
"lint-staged": {
"*.{ts,tsx}": "tsc-files --noEmit types.d.ts",
"*.{ts,tsx,js,html,json,md}": "prettier --write",
"*.{ts,tsx,js}": "eslint --cache --fix"
}
}