This repository has been archived by the owner on Oct 5, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
112 lines (112 loc) · 3.56 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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "metronome-wallet-mobile",
"description": "Metronome wallet for mobile devices",
"version": "1.1.2",
"author": {
"name": "Autonomous Software",
"email": "info@autonomous.sh",
"url": "https://autonomous.sh"
},
"repository": "autonomoussoftware/metronome-wallet-mobile",
"license": "MIT",
"scripts": {
"android": "adb reverse tcp:8081 tcp:8081 && react-native run-android",
"android:beta": "fastlane android beta version:$npm_package_version",
"env": "./scripts/env.sh",
"gradle-properties": "export $(cat .env | xargs) && ./scripts/gradle-properties.sh $npm_package_version",
"ios": "react-native run-ios",
"ios:beta": "fastlane ios beta version:$npm_package_version",
"ios:bundle": "./scripts/ios-bundle.sh",
"nuke-caches": "./scripts/nuke-caches.sh",
"lint": "eslint .",
"postinstall": "patch-package && npm run podInstall && npx react-native link",
"podInstall": "cd ./ios && pod install && cd ..",
"prepare": "husky install",
"start": "react-native start",
"test": "jest"
},
"rnpm": {
"assets": [
"./src/assets/fonts"
]
},
"dependencies": {
"@react-native-async-storage/async-storage": "1.15.5",
"@react-native-community/masked-view": "0.1.11",
"@sentry/react-native": "2.6.0",
"base-64": "1.0.0",
"fast-password-entropy": "1.1.1",
"lodash": "4.17.21",
"metronome-contracts": "2.5.0",
"metronome-wallet-core": "3.0.0",
"metronome-wallet-ui-logic": "3.5.2",
"node-libs-browser": "2.2.1",
"patch-package": "6.4.7",
"prop-types": "15.7.2",
"react": "17.0.1",
"react-native": "0.64.2",
"react-native-bip39": "2.3.0",
"react-native-camera": "3.44.2",
"react-native-config": "1.4.2",
"react-native-gesture-handler": "1.10.3",
"react-native-google-analytics-bridge": "7.1.0",
"react-native-keychain": "7.0.0",
"react-native-qrcode-scanner": "1.5.4",
"react-native-qrcode-svg": "6.1.1",
"react-native-randombytes": "3.5.0",
"react-native-reanimated": "2.1.0",
"react-native-restart": "0.0.22",
"react-native-safe-area-context": "3.2.0",
"react-native-screens": "3.4.0",
"react-native-splash-screen": "3.2.0",
"react-native-svg": "12.1.1",
"react-native-version-number": "0.3.6",
"react-navigation": "4.4.0",
"react-navigation-drawer": "2.7.1",
"react-navigation-stack": "2.10.4",
"smart-round": "1.0.0",
"web3-utils": "1.3.6"
},
"devDependencies": {
"@babel/core": "7.12.9",
"@babel/runtime": "7.12.5",
"@react-native-community/eslint-config": "2.0.0",
"babel-eslint": "8.2.6",
"babel-jest": "26.6.3",
"eslint": "7.14.0",
"eslint-config-bloq": "2.4.0",
"eslint-config-prettier": "8.3.0",
"eslint-config-standard": "16.0.3",
"eslint-plugin-import": "2.23.4",
"eslint-plugin-jsdoc": "35.4.1",
"eslint-plugin-mocha": "9.0.0",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-prefer-arrow": "1.2.3",
"eslint-plugin-promise": "5.1.0",
"eslint-plugin-react": "7.24.0",
"eslint-plugin-react-hooks": "4.2.0",
"eslint-plugin-react-native": "3.11.0",
"husky": "7.0.1",
"jest": "25.1.0",
"lint-staged": "11.0.0",
"metro-react-native-babel-preset": "0.64.0",
"prettier": "1.15.3",
"react-devtools": "4.13.5",
"react-test-renderer": "17.0.1"
},
"lint-staged": {
"src/**/*.js": [
"eslint --cache"
],
"src/!(client)/**/*.{js,json,css,md}": [
"prettier --write"
]
},
"jest": {
"preset": "react-native"
},
"engines": {
"node": ">=12",
"npm": ">=6"
}
}