You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

95 lines
3.4 KiB

7 years ago
{
"name": "BlueWallet",
6 years ago
"version": "2.4.0",
7 years ago
"devDependencies": {
"babel-eslint": "^8.2.2",
"eslint": "^4.19.0",
"eslint-config-standard": "^11.0.0",
"eslint-config-standard-react": "^6.0.0",
"eslint-plugin-babel": "^4.1.2",
"eslint-plugin-import": "^2.9.0",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-promise": "^3.7.0",
"eslint-plugin-react": "^7.7.0",
"eslint-plugin-standard": "^3.0.1",
7 years ago
"jest-expo": "^23.0.0",
7 years ago
"prettier-eslint-cli": "^4.7.1",
7 years ago
"react-native-scripts": "1.8.1",
"react-test-renderer": "16.0.0",
7 years ago
"rn-nodeify": "github:mvayngrib/rn-nodeify",
7 years ago
"snazzy": "^7.0.0",
"standard": "^11.0.1"
7 years ago
},
"main": "./node_modules/react-native-scripts/build/bin/crna-entry.js",
"scripts": {
"prepare": "git apply -R --ignore-whitespace patches/metro-bundler+0.9.2.patch; git apply patches/transaction_builder.js.patch; git apply ./patches/transaction.js.patch",
7 years ago
"start": "react-native-scripts start",
"eject": "react-native-scripts eject",
"android": "react-native-scripts android",
"ios": "react-native-scripts ios",
"postinstall": "./node_modules/.bin/rn-nodeify --install buffer,events,process,stream,util,inherits,fs,path --hack",
7 years ago
"test": "npm run unit && npm run jest && npm run lint",
"jest": "node node_modules/jest/bin/jest.js",
"lint": "./node_modules/.bin/eslint *.js screen/**/*.js screen/ class/ models/ loc/ --fix",
7 years ago
"unit": "./node_modules/.bin/mocha tests/**/*.js"
7 years ago
},
"jest": {
"preset": "jest-expo"
},
"dependencies": {
"asyncstorage-down": "^3.1.1",
"bignumber.js": "^5.0.0",
7 years ago
"bip21": "^2.0.1",
6 years ago
"bip39": "^2.5.0",
7 years ago
"bitcoinjs-lib": "^3.3.2",
"buffer": "^5.1.0",
"buffer-reverse": "^1.0.1",
7 years ago
"crypto-js": "^3.1.9-1",
7 years ago
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-prettier": "^2.6.0",
7 years ago
"expo": "^23.0.6",
"expo-analytics": "^1.0.7",
7 years ago
"frisbee": "^1.6.4",
"isaac": "0.0.5",
7 years ago
"mocha": "^5.0.4",
7 years ago
"node-libs-react-native": "^1.0.1",
7 years ago
"prettier": "^1.11.1",
7 years ago
"process": "^0.11.10",
"prop-types": "^15.6.1",
7 years ago
"react": "16.0.0",
"react-localization": "^1.0.10",
7 years ago
"react-native": "https://github.com/expo/react-native/archive/sdk-23.0.0.tar.gz",
"react-native-camera": "^0.12.0",
"react-native-elements": "^0.18.5",
"react-native-level-fs": "^3.0.0",
"react-native-qrcode": "^0.2.6",
6 years ago
"react-native-snap-carousel": "^3.7.2",
7 years ago
"react-navigation": "^1.0.0-beta.23",
"readable-stream": "^1.1.14",
"request-promise-native": "^1.0.5",
"secure-random": "^1.1.1",
"stream-browserify": "^1.0.0",
"wif": "^2.0.1"
7 years ago
},
"react-native": {
"path": "path-browserify",
"fs": "react-native-level-fs",
"_stream_transform": "readable-stream/transform",
"_stream_readable": "readable-stream/readable",
"_stream_writable": "readable-stream/writable",
"_stream_duplex": "readable-stream/duplex",
"_stream_passthrough": "readable-stream/passthrough",
"stream": "stream-browserify"
},
"browser": {
"path": "path-browserify",
"fs": "react-native-level-fs",
"_stream_transform": "readable-stream/transform",
"_stream_readable": "readable-stream/readable",
"_stream_writable": "readable-stream/writable",
"_stream_duplex": "readable-stream/duplex",
"_stream_passthrough": "readable-stream/passthrough",
"stream": "stream-browserify"
}
}