-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.61 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
{
"name": "react-native-sample",
"version": "0.0.1",
"private": true,
"scripts": {
"start": "node node_modules/react-native/local-cli/cli.js start",
"test": "jest",
"api-mock": "json-server --watch api-db.js --routes api-routes.json",
"test:watch": "jest --watch",
"coverage": "jest --coverage"
},
"dependencies": {
"faker": "3.1.0",
"lodash": "^4.16.4",
"node-uuid": "^1.4.7",
"react": "15.3.2",
"react-native": "^0.36.1",
"react-native-action-button": "^2.0.14",
"react-native-camera": "https://github.com/lwansbrough/react-native-camera.git",
"react-native-elements": "^0.7.1",
"react-native-maps": "^0.11.0",
"react-native-router-flux": "^3.36.0",
"react-native-scrollable-tab-view": "^0.7.0",
"react-native-vector-icons": "^2.1.0",
"react-redux": "^4.4.5",
"redux": "^3.6.0",
"redux-thunk": "^2.1.0",
"remote-redux-devtools": "^0.5.3",
"styled-components": "^1.0.10"
},
"devDependencies": {
"babel-jest": "^16.0.0",
"babel-preset-react-native": "^1.9.0",
"enzyme": "^2.5.1",
"eslint": "^3.6.0",
"eslint-config-airbnb": "^12.0.0",
"eslint-config-react-native": "^1.6.0",
"eslint-loader": "^1.3.0",
"eslint-plugin-babel": "^3.2.0",
"eslint-plugin-import": "^2.0.1",
"eslint-plugin-jsx-a11y": "^2.2.3",
"eslint-plugin-react": "^6.3.0",
"eslint-plugin-react-native": "^2.0.0",
"jest": "^16.0.1",
"jest-react-native": "^16.0.0",
"react-addons-test-utils": "^15.3.2",
"react-dom": "^15.3.2",
"react-test-renderer": "^15.3.2"
},
"jest": {
"preset": "jest-react-native"
}
}