forked from mini-eggs/Flippour
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.44 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
{
"name": "Flippour",
"version": "1.2.0",
"private": true,
"scripts": {
"ios": "react-native run-ios",
"android": "react-native run-android",
"build-android": "cd android && ./gradlew assembleRelease && cd .. ",
"start": "node node_modules/react-native/local-cli/cli.js start",
"test": "jest",
"flow": "node_modules/.bin/flow"
},
"dependencies": {
"babel-plugin-module-resolver": "^2.6.0",
"babel-plugin-syntax-decorators": "^6.13.0",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"firebase": "^3.7.4",
"flow-bin": "^0.40.0",
"lodash": "^4.17.4",
"native-base": "git://github.com/mini-eggs/NativeBase.git#ff7bef47de2d5645bc9a3afab21a07de4ed70549",
"react": "16.0.0-alpha.6",
"react-native": "^0.43.4",
"react-native-actionsheet": "^2.1.0",
"react-native-billing": "^2.3.0",
"react-native-device-info": "^0.10.1",
"react-native-in-app-utils": "^5.2.3",
"react-native-sound": "^0.9.1",
"react-navigation": "^1.0.0-beta.11",
"react-redux": "^5.0.3",
"redux": "^3.6.0",
"redux-thunk": "^2.2.0",
"remote-redux-devtools": "^0.5.7",
"styled-components": "^1.4.4"
},
"devDependencies": {
"babel-jest": "19.0.0",
"babel-preset-react-native": "1.9.1",
"jest": "19.0.2",
"prettier": "^1.1.0",
"react-test-renderer": "16.0.0-alpha.6"
},
"jest": {
"preset": "react-native",
"setupFiles": [
"./jest.setup.js"
],
"transformIgnorePatterns": [
"node_modules/?!(react-native|native-base)"
]
}
}