-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
59 lines (59 loc) · 1.71 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
{
"name": "minimal-quotes",
"version": "1.0.2",
"private": true,
"scripts": {
"start": "node node_modules/react-native/local-cli/cli.js start",
"test": "jest",
"run:ios": "react-native run-ios",
"run:android": "react-native run-android",
"lint": "./node_modules/eslint/bin/eslint.js src --fix"
},
"dependencies": {
"lodash": "^4.17.10",
"prop-types": "^15.6.2",
"react": "16.4.2",
"react-native": "0.56.0",
"react-native-code-push": "^5.4.1",
"react-native-extended-stylesheet": "^0.9.0",
"react-native-firebase": "^4.3.8",
"react-native-iphone-x-helper": "^1.1.0",
"react-native-share": "^1.1.1",
"react-native-side-menu": "^1.1.3",
"react-native-view-shot": "^2.4.0",
"react-navigation": "^2.13.0",
"react-redux": "^5.0.7",
"realm": "^2.15.3",
"recompose": "^0.28.0",
"redux": "^4.0.0",
"redux-logger": "^3.0.6",
"redux-persist": "^5.10.0",
"redux-promise": "^0.6.0",
"redux-thunk": "^2.3.0"
},
"devDependencies": {
"@babel/core": "^7.0.0-beta",
"babel-core": "^7.0.0-beta",
"babel-eslint": "^9.0.0",
"babel-jest": "23.4.2",
"babel-preset-react-native": "^5",
"babel-runtime": "^7.0.0-beta",
"enzyme": "^3.6.0",
"enzyme-adapter-react-16": "^1.5.0",
"eslint": "^5.5.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-react": "^7.11.1",
"jest": "23.4.2",
"node-fetch": "^2.2.0",
"react-addons-test-utils": "^15.6.2",
"react-dom": "^16.5.1"
},
"jest": {
"preset": "react-native",
"transform": {
"^.+\\.js$": "<rootDir>/node_modules/react-native/jest/preprocessor.js"
}
}
}