forked from decentralized-identity/web5-wallet
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 3.62 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 3.62 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
{
"name": "web5wallet",
"version": "0.0.0",
"main": "index.js",
"scripts": {
"start": "expo start --dev-client --clear",
"android": "expo run:android",
"android:release": "cd android && ./gradlew :app:bundleRelease && open app/build/outputs/bundle/release/",
"ios": "expo run:ios",
"web": "expo start --web",
"lint": "eslint \"**/*.{js,ts,tsx}\"",
"clean:rn": "watchman watch-del-all; rm -rf $TMPDIR/react-*; rm -rf $TMPDIR/react-native-packager-cache-*; rm -rf $TMPDIR/metro-cache; rm -rf $TMPDIR/haste-map-react-native-packager-*",
"clean:yarn": "rm -rf node_modules/; yarn cache clean; yarn install",
"clean:system": "rm -rf ~/.cocoapods; rm -rf /Library/Developer/Xcode/DerivedData; rm -rf ~/.gradle/; rm -rf $(getconf DARWIN_USER_CACHE_DIR)/org.llvm.clang/ModuleCache; rm -rf $(getconf DARWIN_USER_CACHE_DIR)/org.llvm.clang.$(whoami)/ModuleCache; rm -fr ~/Library/Caches/com.apple.dt.Xcode/",
"clean:android": "cd android;./gradlew clean;./gradlew --stop",
"clean:ios": "rm -rf ios/build; pod cache clean --all; rm -rf ios/Pods; cd ios; xcodebuild -alltargets clean",
"clean": "yarn run clean:rn; yarn run clean:yarn; yarn run clean:android; yarn run clean:ios; npx pod-install@latest",
"deep-clean": "yarn run clean:system; yarn run clean",
"postinstall": "patch-package"
},
"@comment resolutions": "enforce de-duping even if upstream wont. this will need to be maintained.",
"resolutions": {
"@ipld/dag-cbor": "^9.0.3"
},
"dependencies": {
"@craftzdog/react-native-buffer": "6.0.5",
"@react-navigation/bottom-tabs": "6.5.8",
"@react-navigation/native": "6.1.7",
"@react-navigation/native-stack": "6.9.13",
"@tanstack/react-query": "4.35.3",
"@tbd54566975/dwn-sdk-js": "0.2.3",
"@tbd54566975/web5": "0.7.11",
"@tbd54566975/web5-react-native-metro-config": "0.1.3",
"@tbd54566975/web5-react-native-polyfills": "0.1.3",
"@types/uuid": "9.0.4",
"@web5/api": "0.8.1-alpha-20231003-e73c548",
"@web5/dids": "0.2.0-alpha-20231003-e73c548",
"@web5/identity-agent": "0.2.1-alpha-20231003-e73c548",
"expo": "49.0.3",
"expo-barcode-scanner": "12.5.3",
"expo-level": "file:assets/expo-level",
"expo-local-authentication": "^13.6.0",
"expo-secure-store": "^12.5.0",
"expo-splash-screen": "0.20.4",
"expo-status-bar": "1.6.0",
"react": "18.2.0",
"react-native": "0.72.3",
"react-native-bignumber": "0.2.1",
"react-native-blob-jsi-helper": "0.3.1",
"react-native-keyboard-controller": "1.8.0",
"react-native-leveldb": "3.3.1",
"react-native-quick-base64": "2.0.6",
"react-native-quick-crypto": "0.6.1",
"react-native-reanimated": "3.5.4",
"react-native-safe-area-context": "4.7.1",
"react-native-screens": "3.22.1",
"readable-stream": "4.4.2",
"realistic-structured-clone": "3.0.0",
"web-streams-polyfill": "3.2.1"
},
"devDependencies": {
"@babel/core": "7.22.9",
"@babel/plugin-proposal-nullish-coalescing-operator": "7.18.6",
"@babel/plugin-proposal-optional-chaining": "7.21.0",
"@babel/plugin-proposal-private-methods": "7.18.6",
"@types/ms": "0.7.31",
"@types/react": "18.2.15",
"@typescript-eslint/eslint-plugin": "6.0.0",
"@typescript-eslint/parser": "6.0.0",
"eslint": "8.45.0",
"eslint-import-resolver-typescript": "3.5.5",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-react": "7.32.2",
"eslint-plugin-react-etc": "2.0.1",
"eslint-plugin-react-hooks": "4.6.0",
"eslint-plugin-react-native": "4.0.0",
"patch-package": "7.0.2",
"postinstall-postinstall": "2.1.0",
"typescript": "4.9.4"
},
"private": true
}