-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 2.83 KB
/
Copy pathpackage.json
File metadata and controls
93 lines (93 loc) · 2.83 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
{
"name": "shapeshift",
"version": "3.0.0",
"private": true,
"main": "index.js",
"scripts": {
"prebuild": "expo prebuild",
"android": "expo run:android",
"ios": "expo run:ios",
"start": "expo start",
"test": "jest",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"lint:fix": "eslint . --ext .js,.jsx,.ts,.tsx --fix",
"type-check": "tsc --project ./tsconfig.json --noEmit"
},
"dependencies": {
"@react-hook/async": "^3.1.1",
"@react-native-async-storage/async-storage": "2.2.0",
"@solana-mobile/dapp-store-cli": "^0.11.0",
"@solana-mobile/mobile-wallet-adapter-protocol-web3js": "^2.1.0",
"@solana/web3.js": "^1.95.8",
"@tanstack/react-query": "^5.75.4",
"bip39": "^3.0.4",
"buffer": "^6.0.3",
"expo": "~54.0.16",
"expo-application": "^7.0.7",
"expo-build-properties": "~1.0.9",
"expo-camera": "~17.0.8",
"expo-clipboard": "~8.0.7",
"expo-constants": "~18.0.9",
"expo-dev-client": "^6.0.17",
"expo-device": "~8.0.9",
"expo-haptics": "^15.0.7",
"expo-local-authentication": "~17.0.7",
"expo-navigation-bar": "~5.0.8",
"expo-notifications": "~0.32.12",
"expo-secure-store": "~15.0.7",
"expo-splash-screen": "~31.0.10",
"expo-status-bar": "^3.0.8",
"expo-store-review": "~9.0.8",
"expo-updates": "~29.0.12",
"lodash.memoize": "^4.1.2",
"lodash.once": "^4.1.1",
"metro": "^0.83.1",
"react": "19.1.0",
"react-native": "0.81.4",
"react-native-error-boundary": "latest",
"react-native-get-random-values": "~1.11.0",
"react-native-safe-area-context": "5.6.0",
"react-native-svg": "15.12.1",
"react-native-webview": "13.16.0"
},
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/preset-env": "^7.19.3",
"@babel/runtime": "^7.19.0",
"@react-native-community/eslint-config": "^3.1.0",
"@react-native/metro-config": "0.79.1",
"@tsconfig/react-native": "^2.0.2",
"@types/jest": "29.5.14",
"@types/lodash.memoize": "^4.1.7",
"@types/lodash.once": "^4.1.7",
"@types/react": "~19.1.0",
"@types/react-test-renderer": "^18.0.0",
"@typescript-eslint/eslint-plugin": "^5.38.1",
"@typescript-eslint/parser": "^6.6.0",
"babel-jest": "^28.1.3",
"eslint": "^8.24.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-ft-flow": "^2.0.1",
"eslint-plugin-jest": "^27.0.4",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.31.8",
"eslint-plugin-react-native": "^4.0.0",
"jest": "^29.4.0",
"metro-react-native-babel-preset": "^0.72.3",
"prettier": "^2.7.1",
"react-test-renderer": "18.2.0",
"typescript": "~5.9.2"
},
"jest": {
"preset": "react-native",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
},
"packageManager": "yarn@3.6.4"
}