-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
47 lines (47 loc) · 1.21 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
{
"name": "AwesomeProject",
"version": "0.0.1",
"private": true,
"scripts": {
"start": "node node_modules/react-native/local-cli/cli.js start",
"test": "jest",
"lint": "eslint app/",
"lint:fix": "eslint app/ --fix"
},
"dependencies": {
"axios": "^0.17.1",
"moment": "^2.20.1",
"native-base": "^2.3.1",
"prop-types": "^15.6.0",
"react": "^16.2.0",
"react-native": "^0.53.3",
"react-native-firebase": "^3.2.1",
"react-native-image-picker": "^0.26.7",
"react-native-modal": "^4.1.1",
"react-native-navigation": "^1.1.388",
"react-native-onesignal": "^3.2.4",
"react-native-timeline-listview": "^0.2.2",
"react-native-vector-icons": "^4.5.0",
"react-redux": "^5.0.7",
"redux": "^3.7.2",
"redux-logger": "^3.0.6",
"redux-persist": "^4.10.2",
"redux-promise-middleware": "^5.0.0",
"redux-thunk": "^2.2.0"
},
"devDependencies": {
"babel-eslint": "^8.2.2",
"babel-jest": "21.2.0",
"babel-preset-react-native": "4.0.0",
"eslint": "^4.18.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.9.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.7.0",
"jest": "21.2.1",
"react-test-renderer": "^16.2.0"
},
"jest": {
"preset": "react-native"
}
}