-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.56 KB
/
Copy pathpackage.json
File metadata and controls
50 lines (50 loc) · 1.56 KB
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
{
"name": "RNNExample",
"version": "0.0.1",
"private": true,
"scripts": {
"start": "node node_modules/react-native/local-cli/cli.js start",
"test": "jest",
"prettier": "find . -name node_modules -prune -or -name '*.js' -print | xargs prettier --write",
"install-linters": "npm install -g eslint eslint-plugin-react eslint-plugin-jsx-a11y eslint-plugin-import eslint-config-airbnb babel-eslint eslint-plugin-class-property",
"lint": "eslint ."
},
"dependencies": {
"is-empty-object": "^1.1.1",
"prop-types": "^15.6.0",
"react": "16.0.0-beta.5",
"react-native": "0.50",
"react-native-device-info": "^0.15.2",
"react-native-google-signin": "^0.12.0",
"react-native-navigation": "^1.1.229",
"react-native-push-notification": "^3.0.2",
"react-redux": "^5.0.6",
"redux": "~3.4.0",
"redux-action-buffer": "~1.1.0",
"redux-persist": "~3.1.1",
"redux-persist-transform-immutable": "~4.1.0",
"redux-thunk": "~2.1.0",
"reselect": "^2.5.4"
},
"devDependencies": {
"babel-jest": "21.2.0",
"babel-preset-react-native": "4.0.0",
"eslint": "^4.12.0",
"eslint-config-callstack-io": "^1.0.1",
"eslint-config-fb-strict": "^20.0.3",
"eslint-config-fbjs": "^1.1.1",
"eslint-plugin-babel": "^4.1.1",
"eslint-plugin-flowtype": "^2.33.0",
"eslint-plugin-prettier": "2.1.1",
"eslint-plugin-react": "^7.2.1",
"flow-bin": "^0.59.0",
"jest": "21.2.1",
"react-native-clean-project": "^1.0.6",
"react-test-renderer": "16.0.0-beta.5",
"reactotron-react-native": "~1.12.2",
"reactotron-redux": "~1.12.2"
},
"jest": {
"preset": "react-native"
}
}