This repository was archived by the owner on Apr 9, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpackage.json
More file actions
108 lines (108 loc) · 3.68 KB
/
package.json
File metadata and controls
108 lines (108 loc) · 3.68 KB
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
{
"name": "inrupt-data-wallet",
"main": "expo-router/entry",
"version": "1.0.0",
"scripts": {
"start": "expo start --port 8082",
"android": "expo run:android",
"ios": "expo run:ios",
"web": "expo start --web",
"test": "jest --watchAll",
"lint": "npm run lint:eslint",
"lint:fix": "npm run lint:eslint -- --fix",
"lint:eslint": "eslint --config .eslintrc.js .",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,json,css,md}\"",
"test:snapshot": "jest --config jest.config.ts",
"test:ui:build": "npx expo prebuild --platform android & npx detox build --configuration android.emu.release",
"test:ui:run": "npx detox test --configuration android.emu.release --loglevel verbose --record-logs all"
},
"dependencies": {
"@expo/vector-icons": "^14.1.0",
"@fortawesome/fontawesome-svg-core": "^6.6.0",
"@fortawesome/free-regular-svg-icons": "^6.6.0",
"@fortawesome/free-solid-svg-icons": "^6.6.0",
"@fortawesome/react-native-fontawesome": "^0.3.2",
"@gorhom/bottom-sheet": "^4.6.4",
"@inrupt/solid-client-errors": "^0.0.2",
"@react-native-cookies/cookies": "^6.2.1",
"@react-navigation/native": "^7.0.14",
"@tanstack/react-query": "^5.56.2",
"date-fns": "^3.6.0",
"expo": "~53.0.11",
"expo-build-properties": "^0.14.6",
"expo-camera": "~16.1.8",
"expo-constants": "~17.1.6",
"expo-dev-client": "~5.2.0",
"expo-document-picker": "~13.1.5",
"expo-file-system": "~18.1.10",
"expo-font": "~13.3.1",
"expo-image-picker": "~16.1.4",
"expo-linking": "~7.1.5",
"expo-router": "~5.1.0",
"expo-secure-store": "~14.2.3",
"expo-sharing": "~13.1.5",
"expo-splash-screen": "~0.30.9",
"expo-status-bar": "~2.2.3",
"expo-system-ui": "~5.0.8",
"form-data": "^4.0.3",
"mime": "^4.0.4",
"react": "19.0.0",
"react-dom": "19.0.0",
"react-native": "0.79.3",
"react-native-gesture-handler": "~2.24.0",
"react-native-qrcode-svg": "^6.3.15",
"react-native-reanimated": "~3.17.4",
"react-native-safe-area-context": "5.4.0",
"react-native-screens": "~4.11.1",
"react-native-svg": "15.11.2",
"react-native-svg-transformer": "^1.5.1",
"react-native-web": "~0.20.0",
"react-native-webview": "13.13.5",
"react-native-webview-ios-cache-clear": "^1.0.0"
},
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/preset-env": "^7.25.3",
"@babel/preset-react": "^7.24.7",
"@config-plugins/detox": "^11.0.0",
"@inrupt/eslint-config-base": "^3.2.4",
"@inrupt/eslint-config-lib": "^3.2.4",
"@testing-library/jest-native": "^5.4.3",
"@testing-library/react-native": "^13.2.0",
"@types/jest": "^29.5.13",
"@types/node": "^22.7.4",
"@types/react": "~19.0.10",
"@types/react-test-renderer": "^19.0.0",
"babel-jest": "^29.7.0",
"detox": "^20.25.2",
"eslint": "^8.57.0",
"eslint-config-expo": "~9.2.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react-native": "^4.1.0",
"expo-network-security-config": "^1.0.1",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-expo": "~53.0.7",
"metro-react-native-babel-preset": "^0.77.0",
"prettier": "^3.3.3",
"react-test-renderer": "19.0.0",
"ts-jest": "^29.2.4",
"ts-node": "^10.9.2",
"typescript": "~5.8.3"
},
"expo": {
"doctor": {
"reactNativeDirectoryCheck": {
"listUnknownPackages": false,
"exclude": [
"@react-native-cookies/cookies",
"@fortawesome/fontawesome-svg-core",
"@fortawesome/free-regular-svg-icons",
"@fortawesome/free-solid-svg-icons"
]
}
}
},
"private": true
}