-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
87 lines (87 loc) · 3.38 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
{
"name": "CITest",
"version": "0.0.1",
"private": true,
"scripts": {
"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",
"storybook": "storybook start -p 7007"
},
"dependencies": {
"apisauce": "^0.14.2",
"appcenter": "^1.6.0",
"appcenter-analytics": "^1.6.0",
"appcenter-crashes": "^1.6.0",
"format-json": "^1.0.3",
"identity-obj-proxy": "^3.0.0",
"lodash": "^4.17.4",
"prop-types": "^15.6.1",
"querystringify": "1.0.0",
"ramda": "^0.25.0",
"react": "16.3.1",
"react-native": "0.55.1",
"react-native-config": "^0.10.0",
"react-navigation": "^1.5.11",
"react-navigation-redux-helpers": "^1.0.4",
"react-redux": "^5.0.6",
"redux": "^3.7.2",
"redux-saga": "^0.16.0",
"reduxsauce": "0.7.0",
"seamless-immutable": "^7.1.2"
},
"devDependencies": {
"@storybook/addon-storyshots": "^3.4.0",
"@storybook/addons": "^3.4.0",
"@storybook/channels": "^3.4.0",
"@storybook/react-native": "^3.4.0",
"babel-core": "6.26.0",
"babel-jest": "23.2.0",
"babel-plugin-ignite-ignore-reactotron": "^0.3.0",
"babel-preset-env": "^1.6.1",
"babel-preset-react-native": "^3.0.2",
"enzyme": "^3.2.0",
"enzyme-adapter-react-16": "^1.1.0",
"husky": "^0.14.3",
"ignite-ir-boilerplate-andross": "^2.3.3",
"jest": "23.2.0",
"mockery": "^2.1.0",
"react-dom": "16.3.0",
"react-test-renderer": "16.3.1",
"reactotron-react-native": "^2.0.0-alpha.3",
"reactotron-redux": "^2.0.0-alpha.3",
"reactotron-redux-saga": "^2.0.0-alpha.3"
},
"jest": {
"testMatch": [
"<rootDir>/Tests/**/*.js",
"**/?(*.)(spec|test).js?(x)"
],
"testPathIgnorePatterns": [
"/node_modules/",
"<rootDir>/Tests/Setup.js"
],
"moduleNameMapper": {
"^.+\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "identity-obj-proxy"
},
"setupFiles": [
"<rootDir>/Tests/Setup",
".\\node_modules\\appcenter\\test\\AppCenterMock.js",
".\\node_modules\\appcenter-analytics\\test\\AppCenterAnalyticsMock.js",
".\\node_modules\\appcenter-crashes\\test\\AppCenterCrashesMock.js"
],
"preset": "react-native"
},
"config": {}
}