-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
116 lines (116 loc) · 3.87 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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
{
"name": "@ronas-it/react-native-common-modules/source",
"version": "0.0.0",
"license": "MIT",
"scripts": {
"lint": "npx tsc && cross-env ESLINT_USE_FLAT_CONFIG=false npx eslint ./",
"format": "npx prettier --write . && npm run lint -- --fix",
"deps:sync": "npx syncpack fix-mismatches",
"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}"
},
"private": true,
"dependencies": {
"@expo/metro-config": "~0.19.8",
"@expo/metro-runtime": "~4.0.0",
"@react-native-async-storage/async-storage": "1.23.1",
"@reduxjs/toolkit": "^2.2.6",
"@shopify/flash-list": "1.7.1",
"expo": "~52.0.22",
"expo-constants": "~17.0.3",
"expo-device": "~7.0.1",
"expo-image-picker": "^16.0.3",
"expo-linking": "^7.0.3",
"expo-localization": "~16.0.0",
"expo-notifications": "~0.29.11",
"expo-router": "~4.0.15",
"expo-secure-store": "~14.0.0",
"expo-splash-screen": "~0.29.18",
"expo-status-bar": "~2.0.0",
"expo-updates": "~0.26.10",
"i18n-js": "~4.5.1",
"lodash": "^4.17.21",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-native": "0.76.5",
"react-native-safe-area-context": "4.12.0",
"react-native-screens": "^4.4.0",
"react-native-svg": "15.8.0",
"react-native-svg-transformer": "1.5.0",
"tslib": "^2.8.1"
},
"devDependencies": {
"@config-plugins/detox": "~9.0.0",
"@expo/cli": "~0.22.7",
"@nx/detox": "20.3.0",
"@nx/eslint": "20.3.0",
"@nx/eslint-plugin": "20.3.0",
"@nx/expo": "20.3.0",
"@nx/jest": "20.3.0",
"@nx/js": "20.3.0",
"@nx/rollup": "20.3.0",
"@nx/workspace": "20.3.0",
"@react-native-community/cli-server-api": "^15.1.3",
"@react-native/js-polyfills": "^0.76.5",
"@ronas-it/nx-generators": "^0.10.0",
"@stylistic/eslint-plugin": "^2.12.1",
"@swc-node/register": "~1.9.1",
"@swc/core": "~1.5.7",
"@swc/helpers": "~0.5.11",
"@testing-library/jest-dom": "~6.6.3",
"@testing-library/jest-native": "~5.4.3",
"@testing-library/react-native": "~12.9.0",
"@types/jest": "^29.5.14",
"@types/lodash": "^4.17.13",
"@types/node": "22.10.2",
"@types/react": "~18.3.18",
"@typescript-eslint/eslint-plugin": "^8.18.2",
"@typescript-eslint/parser": "^8.18.2",
"babel-jest": "^29.7.0",
"babel-preset-expo": "~12.0.4",
"cross-env": "^7.0.3",
"detox": "~20.28.0",
"eslint": "~9.17.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.7.0",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-jsx-a11y": "6.10.2",
"eslint-plugin-react": "7.37.3",
"eslint-plugin-react-hooks": "5.1.0",
"eslint-plugin-unused-imports": "^4.1.4",
"jest": "^29.7.0",
"jest-circus": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-expo": "~52.0.2",
"nx": "20.3.0",
"prettier": "^3.4.2",
"react-test-renderer": "18.3.1",
"reactotron-react-native": "^5.1.11",
"reactotron-redux": "^3.1.10",
"rollup": "^4.29.1",
"syncpack": "^12.4.0",
"ts-jest": "^29.2.5",
"ts-node": "10.9.2",
"tsc-files": "^1.1.4",
"typescript": "~5.4.5"
},
"peerDependencies": {
"@pusher/pusher-websocket-react-native": "^1.3.1",
"pusher-js": "^8.4.0-rc2"
},
"optionalDependencies": {
"@nx/nx-darwin-arm64": "20.3.0",
"@nx/nx-darwin-x64": "20.3.0",
"@nx/nx-linux-x64-gnu": "20.3.0",
"@nx/nx-win32-x64-msvc": "20.3.0"
},
"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"
}
}