This repository has been archived by the owner on Jul 14, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
56 lines (56 loc) · 1.58 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
{
"name": "Foodlander",
"version": "1.3.0",
"private": true,
"scripts": {
"start": "node node_modules/react-native/local-cli/cli.js start",
"test": "jest",
"release-android": "cd android && ENVFILE=.env.release ./gradlew installRelease",
"lint": "eslint src/",
"flow": "flow"
},
"dependencies": {
"babel-core": "^6.26.0",
"query-string": "^5.0.1",
"react": "16.0.0-beta.5",
"react-native": "0.49.5",
"react-native-code-push": "^5.3.2",
"react-native-config": "^0.9.0",
"react-native-maps": "^0.17.1",
"react-native-vector-icons": "^4.4.2",
"react-navigation": "^1.0.0-beta.15",
"react-navigation-redux-helpers": "^1.0.5",
"react-redux": "^5.0.5",
"redux": "^3.7.0",
"redux-logger": "^3.0.6",
"redux-pack": "^0.1.5",
"redux-persist": "^5.1.0",
"redux-thunk": "^2.2.0"
},
"devDependencies": {
"babel-eslint": "^8.2.3",
"babel-jest": "22.4.3",
"babel-preset-airbnb": "^2.3.3",
"babel-preset-react-native": "^4.0.0",
"eslint": "^4.3.0",
"eslint-config-airbnb": "16.1.0",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-flowtype": "^2.34.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "6.0.2",
"eslint-plugin-react": "^7.0.1",
"flow-bin": "^0.53.0",
"jest": "^22.4.3",
"prettier": "^1.12.1",
"react-test-renderer": "^16.3.2"
},
"jest": {
"preset": "react-native",
"transformIgnorePatterns": [
"node_modules/(?!(jest-)?react-native|react-navigation|redux-persist)"
],
"globals": {
"window": true
}
}
}