-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
94 lines (94 loc) · 3.32 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
{
"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.0.2",
"@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": "^6.1.18",
"@tanstack/react-query": "^5.56.2",
"date-fns": "^3.6.0",
"expo": "~51.0.31",
"expo-build-properties": "~0.12.5",
"expo-camera": "~15.0.15",
"expo-constants": "~16.0.2",
"expo-dev-client": "~4.0.26",
"expo-document-picker": "~12.0.2",
"expo-file-system": "~17.0.1",
"expo-font": "~12.0.10",
"expo-image-picker": "~15.0.7",
"expo-linking": "~6.3.1",
"expo-router": "~3.5.23",
"expo-secure-store": "~13.0.2",
"expo-sharing": "~12.0.1",
"expo-splash-screen": "~0.27.5",
"expo-status-bar": "~1.12.1",
"expo-system-ui": "~3.0.7",
"mime": "^4.0.4",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-native": "0.74.5",
"react-native-gesture-handler": "~2.16.1",
"react-native-qrcode-svg": "^6.3.1",
"react-native-reanimated": "~3.10.1",
"react-native-safe-area-context": "4.11.0",
"react-native-screens": "3.31.1",
"react-native-svg": "15.2.0",
"react-native-svg-transformer": "^1.5.0",
"react-native-web": "~0.19.12",
"react-native-webview": "13.8.6",
"react-native-webview-ios-cache-clear": "^1.0.0"
},
"devDependencies": {
"@babel/core": "^7.25.2",
"@babel/preset-env": "^7.25.3",
"@babel/preset-react": "^7.24.7",
"@config-plugins/detox": "^8.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": "^12.6.0",
"@types/jest": "^29.5.13",
"@types/node": "^22.7.4",
"@types/react": "~18.2.79",
"@types/react-test-renderer": "^18.3.0",
"babel-jest": "^29.7.0",
"detox": "^20.25.2",
"eslint": "^8.57.0",
"eslint-config-expo": "^7.1.2",
"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": "~51.0.4",
"metro-react-native-babel-preset": "^0.77.0",
"prettier": "^3.3.3",
"react-test-renderer": "^18.2.0",
"ts-jest": "^29.2.4",
"ts-node": "^10.9.2",
"typescript": "~5.6.2"
},
"private": true
}