-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.15 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
{
"name": "ReactNativeReduxApp",
"version": "0.0.1",
"description": "An opinionated development-ready React Native Redux boilerplate that will instantly get you going.",
"private": true,
"scripts": {
"start": "node node_modules/react-native/local-cli/cli.js start",
"test": "jest"
},
"contributors": [
"Iosif Miclaus <[email protected]> (https://github.com/miclaus)",
"Valentina Pegler <[email protected]> (https://github.com/VLNTNA)"
],
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/LEINWAND/react-native-redux-app/issues"
},
"dependencies": {
"lodash": "^4.17.4",
"moment": "^2.17.1",
"react": "15.4.2",
"react-native": "0.40.0",
"react-redux": "^5.0.2",
"redux": "^3.6.0",
"redux-logger": "^2.7.4",
"redux-promise": "^0.5.3",
"redux-thunk": "^2.2.0"
},
"devDependencies": {
"babel-jest": "18.0.0",
"babel-preset-react-native": "1.9.1",
"flow-bin": "^0.38.0",
"jest": "18.1.0",
"react-test-renderer": "15.4.2",
"remote-redux-devtools": "^0.5.7",
"remote-redux-devtools-on-debugger": "^0.7.0"
},
"jest": {
"preset": "react-native"
}
}