-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
113 lines (113 loc) · 3.68 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
{
"name": "@lomray/client-helpers-react-native",
"version": "1.0.0",
"description": "Package contains common client side helpers for React Native.",
"main": "index.js",
"types": "index.d.ts",
"keywords": [
"js",
"helpers",
"pack",
"react",
"native",
"client"
],
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/Lomray-Software/client-helpers-react-native.git"
},
"bugs": {
"url": "https://github.com/Lomray-Software/client-helpers-react-native/issues"
},
"homepage": "https://github.com/Lomray-Software/client-helpers-react-native",
"author": "Mikhail Yarmaliuk",
"license": "Apache-2.0",
"scripts": {
"build": "rollup -c",
"build:watch": "rollup -c -w",
"release": "npm run build && cd lib && npm publish",
"lint:check": "eslint --ext \".ts,.tsx\" \"src/**/*.{ts,tsx,*.ts,*tsx}\"",
"lint:format": "eslint --fix --ext \".ts,.tsx\" \"src/**/*.{ts,tsx,*.ts,*tsx}\"",
"ts:check": "tsc --project ./tsconfig.json --skipLibCheck --noemit",
"prepare": "husky install"
},
"dependencies": {
"@lomray/react-native-layout-helper": "^2.0.0",
"@lomray/reactotron-mobx-store-manager": "^1.2.0",
"atomic-batcher": "^1.0.2",
"react-native-flash-message": "^0.4.2",
"react-native-logs": "^5.0.1",
"react-native-uuid": "^2.0.1",
"reactotron-react-native": "5.0.3"
},
"devDependencies": {
"@amplitude/react-native": ">=2.16.2",
"@babel/core": "^7.23.6",
"@babel/preset-react": "^7.23.3",
"@babel/runtime": "^7.23.6",
"@commitlint/cli": "^18.4.3",
"@commitlint/config-conventional": "^18.4.3",
"@invertase/react-native-apple-authentication": "^2.3.0",
"@lomray/eslint-config": "^3.0.0",
"@lomray/prettier-config": "^1.2.0",
"@react-native-community/netinfo": "^11.2.1",
"@react-native-firebase/auth": "^19.0.1",
"@react-native-firebase/messaging": "^19.0.1",
"@react-native-google-signin/google-signin": "^11.0.0",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-json": "^6.1.0",
"@types/lodash": "^4.14.202",
"@types/react": "^18.2.45",
"@types/react-native": "^0.71.6",
"@zerollup/ts-transform-paths": "^1.7.18",
"eslint": "^8.49.0",
"eslint-config-prettier": "^8.10.0",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.3",
"i18next": "^23.10.1",
"lint-staged": "^15.2.0",
"mobx": "^6.9.0",
"newrelic-react-native-agent": "^1.3.7",
"prettier": "^2.8.8",
"react": "^18.2.0",
"react-i18next": "^14.1.0",
"react-native": "0.71.7",
"react-native-appsflyer": "^6.12.2",
"react-native-fast-image": "^8.6.3",
"react-native-fbsdk-next": "^12.1.2",
"react-native-svg": "^14.1.0",
"react-native-webview": "^13.6.3",
"rollup": "^4.9.1",
"rollup-plugin-copy": "^3.5.0",
"rollup-plugin-folder-input": "^1.0.1",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-ts": "^3.4.5",
"semantic-release": "^23.0.8",
"typescript": "^4.7.4"
},
"peerDependencies": {
"@lomray/client-helpers": "*",
"@react-native-firebase/analytics": "^19.0.1",
"axios": "*",
"lodash": "*",
"react-native-code-push": ">=7.0.5",
"react-native-device-info": ">=10.6.0",
"react-native-haptic-feedback": ">=2.0.3",
"react-native-localize": "^3.0.6",
"react-native-mixed-splash": "^1.0.0",
"react-native-navigation": ">=7.32.1",
"react-native-reanimated": ">=3.6.1",
"react-native-tracking-transparency": ">=0.1.2",
"yup": "^0.32.11"
},
"resolutions": {
"@types/react": "^18"
},
"bin": {
"generate-release-config": "scripts/release-info.js"
}
}