This repository was archived by the owner on Jun 6, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.62 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.62 KB
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
{
"name": "push-for-github-mobile",
"version": "1.0.0",
"private": true,
"scripts": {
"start": "node node_modules/react-native/local-cli/cli.js start",
"lint": "eslint --ext js,jsx .",
"lint:fix": "eslint --fix --ext js,jsx .",
"ios": "react-native run-ios",
"android": "react-native run-android",
"simulators": "yarn ios & yarn android",
"test": "jest",
"icon": "app-icon generate --icon assets/icon.jpg",
"release": "standard-version -a -m \"chore(release): %s\n\n[skip ci]\"",
"postrelease": "git push --follow-tags"
},
"dependencies": {
"prop-types": "^15.6.2",
"react": "16.4.1",
"react-native": "0.56.0",
"react-native-config": "^0.11.5",
"react-native-device-info": "^0.21.5",
"react-native-oauth": "negebauer/react-native-oauth",
"react-native-push-notification": "^3.1.1",
"react-native-sentry": "^0.38.3"
},
"devDependencies": {
"app-icon": "^0.6.3",
"babel-jest": "23.4.0",
"babel-preset-react-native": "^5",
"eslint": "^5.7.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-react": "^7.11.1",
"jest": "23.4.1",
"react-native-version": "^2.6.5",
"react-test-renderer": "16.4.1",
"standard-version": "^4.4.0"
},
"jest": {
"preset": "react-native"
},
"standard-version": {
"scripts": {
"postbump": "react-native-version -s $(($(git rev-list --count master) + $(($(cat ./assets/buildBump)+1)))) && git add android ios",
"posttag": "tag=$(git describe --tags); git tag -d $tag; git tag -a $tag -m $tag"
}
}
}