-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
171 lines (171 loc) · 6.46 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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
{
"name": "@lifeomic/react-native-sdk",
"version": "0.0.0",
"description": "React-native components for building a mobile app against the LifeOmic Platform",
"publishConfig": {
"access": "public"
},
"scripts": {
"format": "yarn prettier '**/*.{ts,tsx,js,json,md}'",
"format:write": "yarn format --write",
"format:check": "yarn format --check",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"lint:fix": "yarn lint --fix",
"test": "tsc --noEmit && yarn jest",
"test:ci": "yarn lint && yarn jest --coverage --runInBand --silent --ci --logHeapUsage --forceExit",
"build": "rm -rf dist && tsc -p tsconfig.build.json --outDir dist && yarn copyAdditionalFiles && yarn buildDeclaredStyles",
"precopyToProject": "yarn build",
"copyToProject": "sh -c 'cp -r ./dist/ ../${0}/node_modules/@lifeomic/react-native-sdk'",
"keepProjectSynced": "node ./bin/scripts/syncWithProject.js",
"copyToStarter": "yarn copyToProject react-native-starter",
"copyAdditionalFiles": "./bin/scripts/copyAdditionalFiles",
"buildDeclaredStyles": "node ./bin/scripts/buildDeclaredStyles.js"
},
"author": "LifeOmic <[email protected]>",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.20.12",
"@babel/preset-env": "^7.20.2",
"@expo/react-native-action-sheet": "^4.0.1",
"@formatjs/intl-getcanonicallocales": "^2.2.0",
"@formatjs/intl-locale": "^3.3.0",
"@formatjs/intl-numberformat": "^8.5.0",
"@formatjs/intl-pluralrules": "^5.2.2",
"@lifeomic/eslint-plugin-i18next": "^2.0.1",
"@material/material-color-utilities": "^0.2.5",
"@react-native-async-storage/async-storage": "^1.17.11",
"@react-native-community/eslint-config": "^3.2.0",
"@react-native-community/netinfo": "^9.3.7",
"@react-native-picker/picker": "^2.4.9",
"@react-navigation/bottom-tabs": "^6.5.7",
"@react-navigation/material-bottom-tabs": "^6.2.15",
"@react-navigation/native": "^6.1.3",
"@react-navigation/native-stack": "^6.9.9",
"@react-navigation/stack": "^6.3.16",
"@tanstack/react-query": "^4.35.3",
"@testing-library/jest-native": "^5.4.1",
"@testing-library/react-hooks": "^8.0.1",
"@testing-library/react-native": "^11.5.1",
"@types/color": "^3.0.3",
"@types/d3-scale": "^3.3.0",
"@types/jest": "^29.4.0",
"@types/lodash": "^4.14.191",
"@types/ms": "^0.7.34",
"@types/react": "^18.0.27",
"@types/react-native": "^0.71.0",
"axios": "^1.3.2",
"axios-mock-adapter": "^1.21.2",
"conventional-changelog-conventionalcommits": "^5.0.0",
"eslint": "^8.33.0",
"graphql": "^16.6.0",
"graphql-request": "^5.1.0",
"i18next": "^22.4.9",
"i18next-resources-to-backend": "^1.1.3",
"jest": "^29.7.0",
"jest-mock-extended": "^3.0.3",
"metro-react-native-babel-preset": "^0.74.1",
"msw": "^1.2.3",
"nock": "^13.3.0",
"prettier": "^2.8.3",
"query-string": "^8.1.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-i18next": "^12.1.5",
"react-native": "^0.71.18",
"react-native-app-auth": "7.1.3",
"react-native-device-info": "^10.3.0",
"react-native-draggable-flatlist": "^4.0.1",
"react-native-gesture-handler": "^2.13.1",
"react-native-gifted-chat": "^2.4.0",
"react-native-keychain": "^8.1.1",
"react-native-markdown-display": "^6.1.6",
"react-native-mmkv": "2.11.0",
"react-native-notifications": "^4.3.3",
"react-native-reanimated": "^3.8.1",
"react-native-safe-area-context": "^4.5.0",
"react-native-screens": "^3.19.0",
"react-native-share": "^9.2.2",
"react-native-svg": "^13.8.0",
"react-native-toast-message": "^2.1.6",
"react-native-uuid": "^2.0.1",
"react-native-view-shot": "^3.7.0",
"react-native-web": "^0.19.1",
"react-native-webview": "^11.26.1",
"react-test-renderer": "^18.2.0",
"rn-emoji-keyboard": "^1.2.2",
"semantic-release": "^19.0.3",
"ts-jest": "^29.0.5",
"tsc-watch": "^6.0.4",
"typescript": "^4.9.4",
"victory-native": "^36.6.11"
},
"peerDependencies": {
"@expo/react-native-action-sheet": "^4.0.1",
"@formatjs/intl-getcanonicallocales": "^2.2.0",
"@formatjs/intl-locale": "^3.3.0",
"@formatjs/intl-numberformat": "^8.5.0",
"@formatjs/intl-pluralrules": "^5.2.2",
"@material/material-color-utilities": "^0.2.5",
"@react-native-async-storage/async-storage": ">=1.17.11",
"@react-native-community/netinfo": ">=9.3.7",
"@react-native-picker/picker": ">=2.4.9",
"@react-navigation/bottom-tabs": "^6.5.7",
"@react-navigation/material-bottom-tabs": ">=6.2.15",
"@react-navigation/native": ">=6.1.3",
"@react-navigation/native-stack": ">=6.9.9",
"@react-navigation/stack": "^6.3.16",
"@tanstack/react-query": "4.x",
"axios": ">=1.3.2",
"graphql": ">=16.6.0",
"graphql-request": ">=5.1.0",
"i18next": ">=22.4.9",
"i18next-resources-to-backend": "^1.1.3",
"query-string": "^8.1.0",
"react": ">=17.0.1",
"react-i18next": ">=12.1.5",
"react-native": ">=0.64.1",
"react-native-app-auth": ">=7.1.3",
"react-native-device-info": ">=10.3.0",
"react-native-draggable-flatlist": ">=4.0.1",
"react-native-gesture-handler": ">=2.13.1",
"react-native-gifted-chat": "^2.4.0",
"react-native-keychain": ">=8.1.1",
"react-native-markdown-display": ">=6.1.6",
"react-native-mmkv": "^2.5.1",
"react-native-notifications": ">=4.3.3",
"react-native-reanimated": ">=3.8.1",
"react-native-safe-area-context": ">=4.5.0",
"react-native-screens": ">=3.19.0",
"react-native-share": ">=9.2.2",
"react-native-svg": ">=13.8.0",
"react-native-svg-transformer": "^1.0.0",
"react-native-toast-message": ">=2.1.6",
"react-native-uuid": "^2.0.1",
"react-native-view-shot": ">=3.7.0",
"react-native-webview": ">=11.26.1",
"rn-emoji-keyboard": "^1.2.2",
"victory-native": "^36.6.11"
},
"dependencies": {
"@lifeomic/chromicons-native": "^2.16.1",
"@lifeomic/one-query": "^3.3.0",
"@lifeomic/react-client": "^1.3.2",
"@types/fhir": "^0.0.36",
"color": "^4.2.3",
"d3-scale": "3.2.1",
"date-fns": "^2.29.3",
"deepmerge": "^4.3.1",
"events": "^3.3.0",
"intl-pluralrules": "^1.3.1",
"lodash": "^4.17.21",
"ms": "^2.1.3",
"react-native-paper": "^5.12.1",
"react-native-vector-icons": "^9.2.0",
"react-navigation-header-buttons": "^9.0.1",
"react-use": "^17.4.0",
"zustand": "^4.4.7"
},
"optionalDependencies": {
"react-native-image-picker": "^7.1.2"
}
}