-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.67 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 1.67 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
{
"name": "oceanjs-mobile",
"version": "1.0.0",
"main": "node_modules/expo/AppEntry.js",
"scripts": {
"start": "expo start",
"android": "expo start --android",
"ios": "expo start --ios",
"web": "expo start --web",
"lint": "eslint .",
"prepare": "husky install"
},
"dependencies": {
"@magic-sdk/react-native-expo": "^20.3.1",
"@oceanprotocol/lib": "^3.0.4",
"@react-native-async-storage/async-storage": "1.18.2",
"@walletconnect/modal-react-native": "^1.0.0-rc.10",
"ethers": "^5.7.2",
"expo": "~49.0.7",
"expo-clipboard": "^4.3.1",
"react": "18.2.0",
"react-native": "0.72.4",
"react-native-get-random-values": "~1.9.0",
"react-native-modal": "^13.0.1",
"react-native-safe-area-context": "4.6.3",
"react-native-svg": "13.9.0",
"react-native-toast-message": "^2.1.6",
"react-native-webview": "13.2.2"
},
"devDependencies": {
"@babel/core": "^7.20.0",
"@commitlint/cli": "^17.7.1",
"@commitlint/config-conventional": "^17.7.0",
"@types/react": "~18.2.14",
"@typescript-eslint/eslint-plugin": "^6.4.0",
"@typescript-eslint/parser": "^6.4.0",
"eslint": "^8.47.0",
"eslint-config-prettier": "^9.0.0",
"eslint-config-universe": "^12.0.0",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^8.0.3",
"lint-staged": "^14.0.1",
"prettier": "^3.0.2",
"typescript": "^5.1.3"
},
"expo": {
"install": {
"exclude": [
"react-native-get-random-values"
]
}
},
"lint-staged": {
"**/*.{js,jsx,ts,tsx}": [
"eslint './src/**/*{js,ts,jsx,tsx}' --fix",
"prettier --write './src/**/*{js,ts,jsx,tsx}'"
]
},
"private": true
}