-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
136 lines (135 loc) · 4.51 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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
{
"name": "Telangana",
"version": "0.0.1",
"private": true,
"scripts": {
"postinstall": "react-native-port-patcher --new-port 8088",
"format": "prettier-standard 'src/**/*.js'",
"start": "node node_modules/react-native/local-cli/cli.js start",
"test": "jest",
"clean": "rm -rf $TMPDIR/react-* && watchman watch-del-all && npm cache clean --force",
"clean:android": "cd android/ && ./gradlew clean && cd .. && react-native run-android",
"newclear": "rm -rf $TMPDIR/react-* && watchman watch-del-all && rm -rf ios/build && rm -rf node_modules/ && npm cache clean --force && npm i",
"test:watch": "jest --watch",
"updateSnapshot": "jest --updateSnapshot",
"coverage": "jest --coverage && open coverage/lcov-report/index.html || xdg-open coverage/lcov-report/index.html",
"android:build": "cd android && ./gradlew assembleRelease",
"android:install": "cd android && ./gradlew assembleRelease && ./gradlew installRelease",
"android:hockeyapp": "cd android && ./gradlew assembleRelease && puck -submit=auto app/build/outputs/apk/app-release.apk",
"android:devices": "$ANDROID_HOME/platform-tools/adb devices",
"android:logcat": "$ANDROID_HOME/platform-tools/adb logcat *:S ReactNative:V ReactNativeJS:V",
"android:shake": "$ANDROID_HOME/platform-tools/adb devices | grep '\\t' | awk '{print $1}' | sed 's/\\s//g' | xargs -I {} $ANDROID_HOME/platform-tools/adb -s {} shell input keyevent 82",
"precommit": "npm run git-hook",
"prepush": "npm run git-hook",
"git-hook": "npm run lint -s",
"lint": "lint-staged --verbose | snazzy",
"lintdiff": "git diff --name-only --cached --relative | grep '\\.js$' | xargs lint-staged | snazzy",
"fixcode": "standard --fix"
},
"rnpm": {
"assets": [
"./App/assests/fonts"
]
},
"dependencies": {
"apisauce": "^0.14.0",
"eslint-config-standard": "^10.2.1",
"eslint-config-standard-jsx": "^4.0.2",
"format-json": "^1.0.3",
"lodash": "^4.17.2",
"prop-types": "^15.5.10",
"querystringify": "^0.0.4",
"ramda": "^0.24.1",
"react": "16.0.0-alpha.12",
"react-native": "0.46.4",
"react-native-animatable": "^1.2.3",
"react-native-config": "^0.2.1",
"react-native-deprecated-custom-components": "^0.1.1",
"react-native-device-info": "^0.10.0",
"react-native-drawer": "^2.3.0",
"react-native-i18n": "^1.0.0",
"react-native-material-design-styles": "^0.2.6",
"react-native-material-ui": "^1.12.0",
"react-native-svg": "5.3.2",
"react-native-svg-image": "^1.1.4",
"react-native-vector-icons": "^4.1.1",
"react-navigation": "^1.0.0-beta.7",
"react-redux": "^5.0.2",
"redux": "^3.6.0",
"redux-persist": "^4.1.0",
"redux-saga": "^0.14.3",
"reduxsauce": "^0.4.1",
"seamless-immutable": "^7.0.1"
},
"devDependencies": {
"babel-eslint": "7.1.1",
"babel-jest": "20.0.3",
"babel-plugin-ignite-ignore-reactotron": "^0.3.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react-native": "2.0.0",
"color": "^1.0.3",
"enzyme": "^2.6.0",
"eslint": "^3.19.0",
"eslint-config-prettier": "^2.3.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-prettier": "^2.1.2",
"eslint-plugin-react": "^7.1.0",
"eslint-plugin-standard": "^3.0.1",
"husky": "^0.13.1",
"ignite-animatable": "^1.0.0",
"ignite-i18n": "^1.0.0",
"ignite-ir-boilerplate": "^2.0.2",
"ignite-standard": "^1.0.0",
"ignite-vector-icons": "^1.0.0",
"jest": "20.0.4",
"mockery": "^2.0.0",
"prettier": "^1.5.3",
"prettier-standard": "^6.0.0",
"react-addons-test-utils": "~15.4.1",
"react-dom": "~15.4.1",
"react-native-port-patcher": "^1.0.2",
"react-test-renderer": "16.0.0-alpha.12",
"reactotron-react-native": "^1.12.0",
"reactotron-redux": "^1.11.1",
"reactotron-redux-saga": "^1.11.1",
"snazzy": "^7.0.0",
"standard": "10.0.2"
},
"jest": {
"testMatch": [
"**/Tests/**/*.js",
"**/?(*.)(spec|test).js?(x)"
],
"testPathIgnorePatterns": [
"/node_modules/",
"Tests/Setup.js"
],
"setupFiles": [
"./Tests/Setup"
],
"preset": "react-native"
},
"config": {},
"standard": {
"parser": "babel-eslint",
"globals": [
"describe",
"test",
"jest",
"expect",
"fetch",
"navigator",
"__DEV__",
"XMLHttpRequest",
"FormData",
"React$Element"
]
},
"lint-staged": {
"*.js": [
"prettier --write",
"git add"
]
}
}