-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
83 lines (83 loc) · 3.18 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
{
"name": "athena-rn",
"version": "1.6.1",
"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.10.2",
"@expo-google-fonts/open-sans": "^0.2.3",
"@expo/metro-config": "~0.17.1",
"@expo/vector-icons": "^14.0.1",
"@graphql-codegen/cli": "^5.0.2",
"@openspacelabs/react-native-zoomable-view": "^2.2.0",
"@react-native-async-storage/async-storage": "1.21.0",
"@react-navigation/bottom-tabs": "^6.5.20",
"@react-navigation/drawer": "^6.6.15",
"@react-navigation/native": "^6.1.17",
"@react-navigation/native-stack": "^6.9.26",
"@sentry/react-native": "~5.20.0",
"@types/react": "~18.2.45",
"expo": "^50.0.18",
"expo-application": "~5.8.4",
"expo-asset": "~9.0.2",
"expo-barcode-scanner": "~12.9.3",
"expo-constants": "~15.4.6",
"expo-dev-client": "~3.3.11",
"expo-device": "~5.9.4",
"expo-font": "~11.10.3",
"expo-linking": "~6.2.2",
"expo-localization": "~14.8.4",
"expo-splash-screen": "~0.26.5",
"expo-status-bar": "~1.11.1",
"expo-updates": "~0.24.12",
"graphql": "^16.8.1",
"graphql-ws": "^5.16.0",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"react-intl": "^6.6.6",
"react-native": "0.73.6",
"react-native-gesture-handler": "~2.14.0",
"react-native-numeric-input": "https://github.com/athena-logistics/react-native-numeric-input.git",
"react-native-reanimated": "~3.6.2",
"react-native-reanimated-table": "^0.0.2",
"react-native-safe-area-context": "4.8.2",
"react-native-screens": "~3.29.0",
"react-native-sectioned-multi-select": "^0.10.0",
"react-native-toast-message": "^2.2.0",
"react-native-web": "~0.19.11",
"typescript": "^5.4.5"
},
"devDependencies": {
"@babel/core": "^7.24.5",
"@formatjs/cli": "^6.2.10",
"@graphql-codegen/typescript": "^4.0.6",
"@graphql-codegen/typescript-document-nodes": "^4.0.6",
"@graphql-codegen/typescript-operations": "^4.2.0",
"@graphql-codegen/typescript-react-apollo": "^4.3.0",
"@typescript-eslint/eslint-plugin": "^7.8.0",
"@typescript-eslint/parser": "^7.8.0",
"babel-plugin-formatjs": "^10.5.14",
"eslint": "^8.56.0",
"eslint-plugin-react": "^7.34.1",
"graphql-tag": "^2.12.6",
"prettier": "^3.2.5",
"prop-types": "^15.8.1"
},
"private": true
}