forked from jarretmoses/react-native-redux-example
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.68 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
{
"name": "react-native-redux-sample",
"version": "0.0.1",
"private": true,
"scripts": {
"start": "node node_modules/react-native/local-cli/cli.js start",
"start-reset": "npm run start -- --reset-cache",
"ios": "react-native run-ios",
"android": "react-native run-android",
"clean-gradle": "cd android/ && ./gradlew clean",
"test": "jest --coverage",
"test:watch": "jest --watch",
"lint": "eslint . --ext .js",
"lint:fix": "eslint . --ext .js --fix",
"flow": "flow; test $? -eq 0"
},
"dependencies": {
"mobile-center": "^0.8.1",
"mobile-center-analytics": "^0.8.1",
"mobile-center-crashes": "^0.8.1",
"react": "~15.4.0",
"react-native": "0.41.2",
"react-navigation": "^1.0.0-beta.3",
"react-redux": "^5.0.2",
"redux": "^3.6.0",
"redux-thunk": "^2.2.0",
"reselect": "^2.5.4"
},
"devDependencies": {
"babel-eslint": "^7.1.1",
"babel-jest": "18.0.0",
"babel-plugin-flow-react-proptypes": "^0.21.0",
"babel-preset-react-native": "1.9.1",
"enzyme": "^2.7.1",
"enzyme-to-json": "^1.4.5",
"eslint": "^3.15.0",
"eslint-config-airbnb": "^14.1.0",
"eslint-config-google": "^0.7.1",
"eslint-plugin-flowtype": "^2.30.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-react": "^6.9.0",
"eslint-plugin-react-native": "^2.2.1",
"flow-bin": "^0.37.0",
"jest": "18.1.0",
"jsdom": "^9.10.0",
"pre-commit": "^1.2.2",
"react-addons-test-utils": "^15.4.2",
"react-dom": "^15.4.2",
"react-test-renderer": "~15.4.0"
},
"jest": {
"preset": "react-native"
},
"pre-commit": [
"lint",
"flow",
"test"
]
}