Polkadot identicons (#301)
* fix(): init with PolaIcon file, types, add ui-shared and react-native-svg * fix(): add @polkadot/util-crypto * fix(): add react-native-crypto with override and node-libs-react-native * fix(): add import 'crypto' in Apps.js * fix(): add stream-browserify and overrides * fix(): ideenticon visible * fix(): pull in @polkadot/reactnative-identicon * fix(): remove test files * fix: update jest config to solve building problem on iOS * fix(): revert https://github.com/paritytech/parity-signer/pull/300 * fix: update npm script for android dev startup * fix: remove nodefy and cleanup deps * fix: re-enable screenshot for debug * fix: typo * fix: remove punny dep * fix: remove polkadot/ui-shared * fix: remove timers-browsify * fix: remove string_decoder * fix: remove buffer * fix: remove hoist-non-react-statics * fix: revert hoist-non-react-statics removal * fix: add peer deps @plugnet/util @polkadot/keyring * fix: upgrade vm-browserify @polkadot/reactnative-identicon * fix: upgrade react-native bignumber reactotron * fix: remove unused react-native-simple-picker * fix: move reactotron to dev-deps * fix: remove report * fix: removed types.js * fix: remove unneeded Buffer and crypto import in shim.js * fix: rename shim and remove yarn dep * fix: rename to shim.js
134 Bytes
34.1 KB
100 Bytes
1.58 KB
1.32 KB
134 Bytes
167 Bytes
207 Bytes
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
jest.config.js
0 → 100644
... | ... | @@ -11,33 +11,43 @@ |
"build-rust-ios": "cd rust/signer && make ios", | ||
"build-rust-android": "cd rust/signer && make android", | ||
"ios": "yarn run build-rust-ios && react-native run-ios", | ||
"android": "yarn run build-rust-android && react-native run-android", | ||
"android": "yarn run build-rust-android && react-native run-android --appIdSuffix \"dev\"", | ||
"start": "NODE_OPTIONS=--max_old_space_size=8192 react-native start", | ||
"postinstall": "jetify", | ||
"postinstall": "npx jetify", | ||
"test": "jest", | ||
"lint": "eslint", | ||
"commit": "commit-wizard" | ||
"commit": "commit-wizard", | ||
"clean": "watchman watch-del-all && rm -rf /tmp/metro-bundler-cache-* && rm -rf /tmp/haste-map-react-native-packager-* && rm -rf node_modules/ && yarn cache clean --force" | ||
}, | ||
"dependencies": { | ||
"@plugnet/util": "^0.94.100", | ||
"@plugnet/wasm-crypto-js": "^0.11.102", | ||
"@polkadot/keyring": "^1.0.1", | ||
"@polkadot/reactnative-identicon": "^0.42.0-beta.28", | ||
"@polkadot/util-crypto": "^1.0.1", | ||
"@react-native-community/netinfo": "^4.1.1", | ||
"bignumber.js": "^4.0.0", | ||
"hoist-non-react-statics": "^2.5.0", | ||
"@tradle/react-native-http": "^2.0.1", | ||
"bignumber.js": "^9.0.0", | ||
"hoist-non-react-statics": "^3.3.0", | ||
"lodash": "^4.17.15", | ||
"node-libs-react-native": "^1.0.3", | ||
"prop-types": "^15.6.1", | ||
"react": "16.8.6", | ||
"react-native": "0.60.3", | ||
"react-native": "0.60.4", | ||
"react-native-camera": "^2.11.1", | ||
"react-native-gesture-handler": "^1.3.0", | ||
"react-native-keyboard-aware-scroll-view": "^0.8.0", | ||
"react-native-markdown-renderer": "^3.2.8", | ||
"react-native-popup-menu": "^0.15.6", | ||
"react-native-randombytes": "^3.5.3", | ||
"react-native-secure-storage": "git+https://github.com/paritytech/react-native-secure-storage.git", | ||
"react-native-simple-picker": "^2.1.0", | ||
"react-native-svg": "^9.5.3", | ||
"react-native-tabs": "^1.0.9", | ||
"react-native-vector-icons": "^6.6.0", | ||
"react-navigation": "^3.11.1", | ||
"readable-stream": "^3.4.0", | ||
"unstated": "^2.1.1", | ||
"yarn": "^1.17.3" | ||
"vm-browserify": "1.1.0" | ||
}, | ||
"devDependencies": { | ||
"@babel/cli": "^7.5.0", | ||
... | ... | @@ -48,6 +58,7 @@ |
"@react-native-community/eslint-config": "^0.0.5", | ||
"babel-eslint": "^10.0.1", | ||
"babel-jest": "^24.8.0", | ||
"babel-plugin-rewrite-require": "^1.14.5", | ||
"eslint": "^6.0.1", | ||
"jest": "^24.8.0", | ||
"jest-react-native": "^18.0.0", | ||
... | ... | @@ -55,8 +66,8 @@ |
"metro-react-native-babel-preset": "^0.55.0", | ||
"pre-git": "^3.14.0", | ||
"prettier": "1.12.1", | ||
"react-test-renderer": "16.8.6", | ||
"reactotron-react-native": "^2.1.5" | ||
"reactotron-react-native": "^3.6.4", | ||
"react-test-renderer": "16.8.6" | ||
}, | ||
"rnpm": { | ||
"assets": [ | ||
... | ... |