-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
90 lines (90 loc) · 3.12 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "boiler-plate",
"version": "1.0.0",
"private": true,
"scripts": {
"android": "react-native run-android",
"clean": "react-native-clean-project",
"generate": "plop --plopfile internals/generators/index.js",
"android-logging": "react-native log-android",
"ios-logging": "react-native log-ios",
"ios": "react-native run-ios",
"start": "react-native start",
"pretest": "npm run lint",
"test": "jest",
"lint": "eslint .",
"reset": "react-native start --reset-cache",
"prettier-fix": "prettier --write **/*.js",
"prettier-check": "prettier --list-different **/*.js",
"lint-fix": "eslint --ignore-path .gitignore --ignore-pattern internals/** --ignore-pattern app/utils/** --fix .",
"lint-check": "eslint .",
"prettify": "prettier --write"
},
"dependencies": {
"@react-native-community/async-storage": "^1.12.0",
"@react-native-community/masked-view": "^0.1.10",
"@react-native-community/toolbar-android": "0.1.0-rc.2",
"@react-navigation/bottom-tabs": "^5.8.0",
"@react-navigation/drawer": "^5.9.0",
"@react-navigation/material-top-tabs": "^5.2.16",
"@react-navigation/native": "^5.7.3",
"@react-navigation/stack": "^5.9.0",
"@reduxjs/toolkit": "^1.5.0",
"@trixta/phoenix-to-redux": "3.4.2-beta.0",
"chalk": "2.4.2",
"hoist-non-react-statics": "3.3.0",
"immer": "~8.0.0",
"invariant": "2.2.4",
"lodash": "^4.17.20",
"phoenix": "^1.5.4",
"prop-types": "^15.7.2",
"react": "16.13.1",
"react-hook-form": "~6.14.1",
"react-redux": "~7.2.2",
"react-native": "0.61.5",
"react-native-elements": "^2.2.1",
"react-native-gesture-handler": "^1.7.0",
"react-native-paper": "^4.0.1",
"react-native-reanimated": "^1.13.0",
"react-native-restart": "0.0.17",
"react-native-safe-area-context": "^3.1.6",
"react-native-screens": "^2.10.1",
"react-native-vector-icons": "^6.6.0",
"redux": "^4.0.5",
"redux-devtools-extension": "^2.13.8",
"redux-injectors": "^1.3.0",
"redux-saga": "1.1.3",
"reselect": "~4.0.0"
},
"devDependencies": {
"@babel/core": "^7.6.2",
"@babel/runtime": "^7.6.2",
"@react-native-community/eslint-config": "^0.0.5",
"babel-jest": "^24.9.0",
"eslint": "^6.5.1",
"eslint-config-prettier": "3.1.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-react": "^7.12.4",
"eslint-plugin-react-native": "^3.6.0",
"eslint-plugin-redux-saga": "0.9.0",
"jest": "^24.9.0",
"metro-react-native-babel-preset": "^0.56.0",
"node-plop": "0.18.0",
"plop": "2.3.0",
"prettier": "1.17.0",
"react-native-clean-project": "^3.3.0",
"react-native-rename": "^2.4.1",
"react-test-renderer": "16.9.0",
"reactotron-react-native": "^5.0.0",
"reactotron-redux": "^3.1.3",
"reactotron-redux-saga": "^4.2.3",
"remote-redux-devtools": "^0.5.16",
"rimraf": "2.6.3",
"shelljs": "0.8.3"
},
"jest": {
"preset": "react-native"
}
}