-
Notifications
You must be signed in to change notification settings - Fork 36
/
Copy pathpackage.json
99 lines (99 loc) · 4.36 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
{
"name": "mobidex",
"version": "0.0.1",
"private": true,
"scripts": {
"prepare": "npm run patch:0x && npm run patch:isomorphic-fetch && npm run patch:whatwg-fetch && npm run patch:web3 && npm run patch:ethers",
"start": "node node_modules/react-native/local-cli/cli.js start",
"patch:0x": "node ./patches/zeroex-exchange-bug.js",
"patch:ethers": "node ./patches/ethers.js",
"patch:isomorphic-fetch": "node ./patches/isomorphic-fetch.js",
"patch:whatwg-fetch": "node ./patches/whatwg-fetch.js",
"patch:web3": "node ./patches/web3.js",
"build:android:release": "cli/build-android.sh",
"build:ios:release": "echo 'You need to build an archive via XCode!'",
"bundle:android:release": "react-native bundle --platform android --dev false --entry-file index.js --bundle-output android/app/src/main/assets/index.android.bundle --assets-dest android/app/src/main/res",
"bundle:android:dev": "react-native bundle --platform android --dev true --entry-file index.js --bundle-output android/app/src/main/assets/index.android.bundle --assets-dest android/app/src/main/res"
},
"dependencies": {
"@react-native-community/slider": "^2.0.0",
"@uniswap/sdk": "^1.0.0-beta.4",
"bignumber.js": "^9.0.0",
"bintrees": "^1.0.2",
"ethereumjs-tx": "^1.3.3",
"ethereumjs-util": "^5.1.3",
"lodash": "^4.17.4",
"moment": "^2.20.1",
"node-libs-react-native": "github:generalpiston/node-libs-react-native",
"prop-types": "^15.6.0",
"qs": "^6.5.1",
"react": "16.8.6",
"react-mixin": "^4.0.0",
"react-native": "0.60.5",
"react-native-animatable": "^1.2.4",
"react-native-app-auth": "^4.3.1",
"react-native-background-timer": "^2.1.1",
"react-native-communications": "^2.2.1",
"react-native-crypto": "^2.1.2",
"react-native-drawer": "^2.5.0",
"react-native-elements": "^1.2.0",
"react-native-exception-handler": "^2.8.9",
"react-native-masked-text": "^1.7.0",
"react-native-modal-dropdown": "^0.6.0",
"react-native-navigation": "^3.2.0",
"react-native-offline": "^4.3.1",
"react-native-randombytes": "^3.0.0",
"react-native-restart": "0.0.13",
"react-native-router-flux": "^4.0.0-beta.28",
"react-native-svg-charts": "^5.0.0",
"react-native-swipeout": "^2.3.3",
"react-native-vector-icons": "^6.6.0",
"react-native-virtual-keyboard": "^1.0.8",
"react-navigation": "^2.18.0",
"react-redux": "^5.0.6",
"react-router-native": "^4.2.0",
"react-timer-mixin": "^0.13.3",
"redux": "^3.7.2",
"redux-actions": "^2.2.1",
"redux-devtools": "^3.4.1",
"redux-devtools-extension": "^2.13.2",
"redux-logger": "^3.0.6",
"redux-thunk": "^2.2.0",
"regenerator": "^0.12.3",
"shelljs": "^0.8.3",
"underscore": "^1.8.3",
"url": "~0.10.1",
"web3": "^1.0.0-beta.36",
"web3-contracts-loader": "github:generalpiston/web3-contracts-loader",
"web3-provider-engine": "github:generalpiston/web3-provider-engine#patch-1"
},
"devDependencies": {
"@babel/core": "^7.4.3",
"@babel/plugin-proposal-decorators": "^7.4.0",
"@babel/plugin-proposal-do-expressions": "^7.2.0",
"@babel/plugin-transform-exponentiation-operator": "^7.2.0",
"@babel/preset-env": "^7.4.3",
"@babel/preset-stage-0": "^7.0.0",
"@babel/runtime": "^7.4.3",
"@types/qs": "^6.5.1",
"babel-eslint": "^9.0.0",
"babel-jest": "22.4.3",
"babel-plugin-syntax-trailing-function-commas": "^6.22.0",
"babel-plugin-transform-async-to-generator": "^6.24.1",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-export-extensions": "^6.22.0",
"babel-plugin-transform-function-bind": "^6.22.0",
"babel-plugin-transform-remove-console": "^6.9.4",
"babylon": "^6.18.0",
"eslint": "^4.19.0",
"eslint-plugin-react": "^7.8.2",
"jest": "22.4.3",
"metro-bundler": "^0.22.1",
"metro-react-native-babel-preset": "^0.53.1",
"react-test-renderer": "16.3.1",
"why-did-you-update": "^1.0.6"
},
"jest": {
"preset": "react-native"
}
}