forked from athena-logistics/athena-rn
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
84 lines (84 loc) · 3.2 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
{
"name": "athena-rn",
"version": "1.5.5",
"license": "MIT",
"scripts": {
"start": "expo start --dev-client",
"android": "npm run start -- --android",
"ios": "npm run start -- --ios",
"web": "npm run start -- --web",
"generate": "npx graphql-codegen --config codegen.yml",
"test": "npm run test:types && npm run test:lint && npm run test:format",
"test:types": "tsc --noEmit",
"test:lint": "eslint .",
"test:format": "prettier --check .",
"format": "prettier --write .",
"version": "./bin/sync-expo-version.mjs",
"translations:extract": "formatjs extract ./{components,screens}/**/*.{ts,tsx} --out-file lang/en.json",
"translations:merge": "jq -s '(.[0] | map_values(.defaultMessage = \"TBD: \" + .defaultMessage)) + .[1]' lang/en.json lang/de.json | sponge lang/de.json",
"translations:compile": "formatjs compile-folder lang compiled-lang --ast",
"postinstall": "npm run generate && npm run translations:compile"
},
"dependencies": {
"@apollo/client": "^3.7.14",
"@expo-google-fonts/open-sans": "^0.2.3",
"@expo/vector-icons": "^13.0.0",
"@graphql-codegen/cli": "^3.3.1",
"@openspacelabs/react-native-zoomable-view": "^2.1.1",
"@react-native-async-storage/async-storage": "1.17.11",
"@react-navigation/bottom-tabs": "^6.5.7",
"@react-navigation/drawer": "^6.6.2",
"@react-navigation/native": "^6.1.6",
"@react-navigation/native-stack": "^6.9.12",
"@types/react": "~18.0.27",
"expo": "~48.0.15",
"expo-asset": "~8.9.1",
"expo-barcode-scanner": "~12.3.2",
"expo-dev-client": "~2.2.1",
"expo-font": "~11.1.1",
"expo-linking": "~4.0.1",
"expo-localization": "~14.1.1",
"expo-splash-screen": "~0.18.2",
"expo-status-bar": "~1.4.4",
"expo-updates": "~0.16.4",
"graphql": "^15.8.0",
"graphql-ws": "^5.12.1",
"react": "18.2.0",
"react-intl": "^6.4.2",
"react-native": "0.71.8",
"react-native-numeric-input": "https://github.com/athena-logistics/react-native-numeric-input.git",
"react-native-reanimated": "~2.14.4",
"react-native-reanimated-table": "^0.0.2",
"react-native-sectioned-multi-select": "^0.9.1",
"react-native-toast-message": "^2.1.6",
"typescript": "^4.9.4",
"react-native-gesture-handler": "~2.9.0",
"react-native-screens": "~3.20.0",
"react-native-safe-area-context": "4.5.0",
"react-native-web": "~0.18.11",
"react-dom": "18.2.0",
"sentry-expo": "~6.1.0",
"expo-application": "~5.1.1",
"expo-constants": "~14.2.1",
"expo-device": "~5.2.1",
"@sentry/react-native": "4.13.0"
},
"devDependencies": {
"@babel/core": "^7.20.0",
"@formatjs/cli": "^6.1.1",
"@graphql-codegen/typescript": "^3.0.4",
"@graphql-codegen/typescript-document-nodes": "^3.0.4",
"@graphql-codegen/typescript-operations": "^3.0.4",
"@graphql-codegen/typescript-react-apollo": "^3.3.7",
"@types/react-native": "^0.71.6",
"@typescript-eslint/eslint-plugin": "^5.59.5",
"@typescript-eslint/parser": "^5.59.5",
"babel-plugin-formatjs": "^10.5.1",
"eslint": "^8.40.0",
"eslint-plugin-react": "^7.32.2",
"graphql-tag": "^2.12.6",
"prettier": "^2.8.8",
"prop-types": "^15.8.1"
},
"private": true
}