forked from dooley1001/hoard
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 2.97 KB
/
package.json
File metadata and controls
95 lines (95 loc) · 2.97 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
94
95
{
"name": "HTHWorld",
"version": "0.2.0",
"private": true,
"scripts": {
"start": "node node_modules/react-native/local-cli/cli.js start",
"test": "node node_modules/jest/bin/jest.js --watch",
"android": "react-native run-android",
"ios": "react-native run-ios",
"lint": "yarn eslint src --ext js",
"format": "prettier ./src/**/*.js --write",
"android:clean-images": "rm android/app/src/main/res/drawable-*/*.png",
"build:android:signed": "source .env && cd android && ./gradlew assembleRelease",
"android:adb": "adb install -r ./android/app/build/outputs/apk/release/app-release.apk",
"postinstall": "patch-package"
},
"jest": {
"preset": "react-native",
"modulePaths": [
"<rootDir>/src"
],
"transformIgnorePatterns": [
"node_modules/(?!react-native|react-navigation)/"
],
"moduleFileExtensions": [
"js"
],
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.js$",
"testPathIgnorePatterns": [
"\\.snap$",
"<rootDir>/node_modules/"
],
"cacheDirectory": ".jest/cache"
},
"dependencies": {
"assert": "^1.4.1",
"babel-eslint": "^8.2.3",
"babel-plugin-rewrite-require": "^1.14.5",
"bitcoinjs-lib": "^3.3.2",
"brorand-shim": "https://github.com/HoardInvest/brorand",
"ethers": "^3.0.9",
"lodash": "^4.17.10",
"lottie-react-native": "^2.5.0",
"prop-types": "^15.6.1",
"react": "16.3.1",
"react-native": "0.55.3",
"react-native-animatable": "^1.2.4",
"react-native-bip39": "^2.3.0",
"react-native-camera": "^1.1.4",
"react-native-config": "^0.11.5",
"react-native-contacts": "^2.1.3",
"react-native-crypto": "^2.1.2",
"react-native-linear-gradient": "^2.4.0",
"react-native-os": "^1.2.1",
"react-native-process-shim": "^1.0.1",
"react-native-qrcode": "^0.2.6",
"react-native-qrcode-svg": "^5.1.0",
"react-native-randombytes": "^3.1.0",
"react-native-search-filter": "^0.1.4",
"react-native-splash-screen": "3.0.9",
"react-native-stream": "^0.1.9",
"react-native-svg": "^6.3.1",
"react-native-svg-circular-progress": "^1.0.4",
"react-native-swipeable": "^0.6.0",
"react-native-touch-id": "^4.0.1",
"react-native-vector-icons": "^4.6.0",
"react-navigation": "2.9.3",
"react-redux": "^5.0.7",
"redux": "^3.7.2",
"redux-saga": "^0.16.0",
"reselect": "^3.0.1",
"urbanairship-react-native": "^1.6.2",
"victory-native": "^0.17.4",
"vm-browserify": "^1.0.1",
"wallet-address-validator": "^0.1.7"
},
"rnpm": {
"assets": [
"./src/assets/fonts/"
]
},
"devDependencies": {
"babel-eslint": "^8.2.3",
"babel-jest": "22.4.3",
"babel-preset-react-native": "4.0.0",
"babel-preset-react-native-stage-0": "^1.0.1",
"eslint": "^4.19.1",
"eslint-plugin-react": "^7.7.0",
"eslint-plugin-react-native": "^3.2.1",
"jest": "22.4.3",
"patch-package": "^5.1.1",
"prettier": "^1.12.0",
"react-test-renderer": "16.3.1"
}
}