-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
82 lines (82 loc) · 2.66 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
{
"name": "com.cndywallet",
"version": "0.1.1",
"private": true,
"scripts": {
"start": "react-native start",
"android": "react-native run-android",
"ios": "react-native run-ios",
"android:emulator:list": "${HOME}/Library/Android/sdk/emulator/emulator -list-avds",
"android:emulator:start": "${HOME}/Library/Android/sdk/emulator/emulator -avd",
"generate:icon": "yo rn-toolbox:assets --icon assets/app-icon.png",
"generate:splash": "yo rn-toolbox:assets --splash assets/app-splash-screen.jpg",
"lint": "eslint src",
"test": "node node_modules/jest/bin/jest.js",
"test:watch": "yarn run test --watch",
"postinstall": "./scripts/postinstall.sh"
},
"jest": {
"preset": "react-native",
"testPathIgnorePatterns": [
"<rootDir>/src/__tests__/fixtures/",
"<rootDir>/src/__tests__/renderer.js",
"node_modules/"
],
"transform": {
"^.+\\.js$": "babel-jest"
},
"transformIgnorePatterns": [
"node_modules/(?!react-native|react-navigation)/"
]
},
"dependencies": {
"axios": "^0.18.0",
"babel-jest": "^23.0.0-alpha.0",
"bip21": "https://github.com/fabrik42/bip21.git",
"lodash": "^4.17.5",
"lottie-react-native": "2.3.2",
"moment": "^2.22.1",
"native-base": "2.6.1",
"node-emoji": "^1.8.1",
"prop-types": "^15.6.1",
"react": "16.2.0",
"react-native": "0.52.0",
"react-native-animatable": "^1.2.4",
"react-native-bouncing-preloader": "^1.0.0",
"react-native-camera": "^1.0.1",
"react-native-custom-qr-codes": "^1.0.2",
"react-native-keychain": "^3.0.0-rc.3",
"react-native-locale": "^0.0.18",
"react-native-modal": "^5.3.0",
"react-native-qrcode-svg": "^5.0.6",
"react-native-style-tachyons": "^3.7.0",
"react-native-svg": "^6.3.1",
"react-native-vector-icons": "^4.6.0",
"react-navigation": "^1.3.2",
"react-redux": "^5.0.7",
"redux": "^3.7.2",
"redux-mock-store": "^1.5.1",
"redux-thunk": "^2.2.0"
},
"devDependencies": {
"axios-mock-adapter": "^1.14.1",
"babel-eslint": "^8.2.2",
"babel-preset-react-native-stage-0": "^1.0.1",
"eslint": "^4.19.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-flowtype": "^2.46.1",
"eslint-plugin-import": "^2.9.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-prettier": "^2.6.0",
"eslint-plugin-react": "^7.7.0",
"eslint-plugin-react-native": "^3.2.1",
"generator-rn-toolbox": "^3.3.2",
"jest": "^22.4.2",
"jest-react-native": "^18.0.0",
"prettier": "^1.11.1",
"react-test-renderer": "16.2.0",
"redux-devtools-extension": "^2.13.2",
"yo": "^2.0.2"
}
}