-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
93 lines (93 loc) · 3.06 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
91
92
93
{
"name": "react-native-boiler-plate",
"version": "2.0.0",
"description": "A boiler-plate project for React-native, Redux and Firebase apps",
"main": "App.js",
"scripts": {
"test": "jest --maxWorkers=4",
"upgrade-deps": "ncu -u && yarn",
"update-changelog": "yarn run auto-changelog && git add . && git commit -m 'Update Changelog' && git push",
"update-tags": "PACKAGE_VERSION=$(cat package.json | grep \\\"version\\\" | head -1 | awk -F: '{ print $2 }' | sed 's/[\",]//g' | tr -d '[[:space:]]') && git tag v$PACKAGE_VERSION && git push --tags",
"publish": "yarn run update-changelog && yarn run update-tags"
},
"jest": {
"preset": "react-native",
"setupFiles": [
"./__mocks__/setup.js"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/AuxStudio/react-native-boiler-plate.git"
},
"keywords": [
"react",
"react-native",
"redux",
"firebase",
"redux-saga"
],
"author": "Shaun Saker",
"license": "MIT",
"bugs": {
"url": "https://github.com/AuxStudio/react-native-boiler-plate/issues"
},
"homepage": "https://github.com/AuxStudio/react-native-boiler-plate/README.md",
"devDependencies": {
"@babel/core": "^7.5.0",
"@babel/runtime": "^7.5.1",
"auto-changelog": "^1.13.0",
"babel-eslint": "^10.0.2",
"babel-jest": "^24.8.0",
"enzyme": "^3.10.0",
"enzyme-adapter-react-16": "^1.14.0",
"eslint": "^6.0.1",
"eslint-config-airbnb": "^17.1.1",
"eslint-plugin-detox": "^1.0.0",
"eslint-plugin-import": "^2.18.0",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.14.2",
"eslint-plugin-react-native": "^3.7.0",
"jest": "^24.8.0",
"jest-react-native": "^18.0.0",
"metro-react-native-babel-preset": "^0.55.0",
"npm-check-updates": "^3.1.13",
"react-test-renderer": "16.8.6",
"redux-saga-testing": "^1.0.5"
},
"dependencies": {
"@react-native-community/netinfo": "^4.0.0",
"prop-types": "^15.7.2",
"react": "^16.8.6",
"react-native": "^0.59.9",
"react-native-code-push": "^5.6.0",
"react-native-fast-image": "^6.1.1",
"react-native-fbsdk": "^0.10.1",
"react-native-firebase": "^5.5.4",
"react-native-geocoder": "^0.5.0",
"react-native-google-signin": "^2.0.0",
"react-native-image-picker": "^0.28.1",
"react-native-image-resizer": "^1.0.1",
"react-native-keyboard-aware-scroll-view": "^0.8.0",
"react-native-material-menu": "^0.6.3",
"react-native-material-textfield": "^0.12.0",
"react-native-modal": "^11.1.0",
"react-native-permissions": "^1.1.1",
"react-native-router-flux": "^4.0.6",
"react-native-simple-animators": "^2.2.5",
"react-native-simple-components": "^2.2.3",
"react-native-snackbar": "^1.0.0",
"react-native-vector-icons": "^6.6.0",
"react-redux": "^7.1.0",
"redux": "^4.0.1",
"redux-logger": "^3.0.6",
"redux-persist": "^5.10.0",
"redux-saga": "^1.0.5"
},
"auto-changelog": {
"output": "CHANGELOG.md",
"template": "keepachangelog",
"unreleased": true,
"commitLimit": false
}
}