This repository has been archived by the owner on May 10, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
116 lines (116 loc) · 3.54 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
{
"name": "irMobile",
"version": "0.0.1",
"private": true,
"scripts": {
"start": "node node_modules/react-native/local-cli/cli.js start",
"test": "jest",
"lint": "eslint .",
"eslint-check": "eslint --print-config .eslintrc.js | eslint-config-prettier-check",
"prettier": "prettier --write '**/*.{js,json,css,md}'",
"clean": "watchman watch-del-all && rm -rf node_modules && yarn install && rm -rf /tmp/metro-bundler-cache-* && rm -rf /tmp/haste-map-react-native-packager-*",
"android": "ENVFILE=.env.develop react-native run-android",
"ios": "ENVFILE=.env.develop react-native run-ios",
"clean-android": "watchman watch-del-all && rm -rf node_modules && rm -rf $TMPDIR/react-* && rm -rf $TMPDIR/npm-* && yarn install && ./android/gradlew clean -p ./android/ && yarn start -- --reset-cache",
"clean-ios": "watchman watch-del-all && rm -rf node_modules && rm -rf $TMPDIR/react-* && rm -rf $TMPDIR/npm-* && yarn install && rm -rf ios/build && yarn start -- --reset-cache",
"storybook": "storybook start",
"build-storybook": "build-storybook -c .storybook -o .out"
},
"dependencies": {
"@react-native-community/async-storage": "^1.5.1",
"axios": "^0.21.1",
"crypto-browserify": "^3.12.0",
"events": "^3.0.0",
"formik": "^1.5.8",
"ir-api": "^1.0.4",
"process": "^0.11.10",
"querystring": "^0.2.0",
"react": "16.8.6",
"react-native": "0.59.10",
"react-native-flash-message": "^0.1.13",
"react-native-gesture-handler": "^1.3.0",
"react-native-keyboard-aware-scroll-view": "^0.9.0",
"react-native-paper": "^2.16.0",
"react-native-splash-screen": "^3.2.0",
"react-native-vector-icons": "^6.6.0",
"react-navigation": "^3.11.1",
"react-redux": "^7.1.0",
"redux": "^4.0.4",
"redux-actions": "^2.6.5",
"redux-saga": "^1.0.5",
"stream-browserify": "^2.0.2",
"vm-browserify": "^1.1.0"
},
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/runtime": "^7.5.5",
"@react-native-community/eslint-config": "^0.0.5",
"@storybook/react-native": "^5.1.9",
"babel-eslint": "^10.0.2",
"babel-jest": "^24.8.0",
"camelcase": "^5.3.1",
"eslint": "^6.0.1",
"eslint-plugin-prettier": "^3.1.0",
"husky": "^3.0.0",
"jest": "^24.8.0",
"jsdom": "^15.1.1",
"lint-staged": "^9.2.0",
"prettier": "^1.18.2",
"react-dom": "^16.8.6",
"react-test-renderer": "16.8.6",
"redux-mock-store": "^1.5.3",
"redux-saga-testing": "^1.0.5",
"remote-redux-devtools": "^0.5.16"
},
"husky": {
"hooks": {
"pre-commit": "yarn run lint-staged"
}
},
"lint-staged": {
"*.{js,json,css,md}": [
"yarn run prettier --write",
"git add"
]
},
"prettier": {
"semi": false,
"singleQuote": true
},
"jest": {
"testEnvironment": "jsdom",
"preset": "react-native",
"collectCoverage": true,
"coverageReporters": [
"text-summary",
"lcov"
],
"testURL": "http://localhost/",
"setupFilesAfterEnv": [
"<rootDir>setupTests.js",
"<rootDir>node_modules/react-native-gesture-handler/jestSetup.js"
],
"testPathIgnorePatterns": [
"<rootDir>/node_modules/*"
],
"coveragePathIgnorePatterns": [
"<rootDir>/node_modules/*",
"<rootDir>/storybook/*",
"<rootDir>/app/theme.js",
"story.js"
],
"coverageThreshold": {
"global": {
"branches": 100,
"functions": 100,
"lines": 100,
"statements": 100
}
}
},
"greenkeeper": {
"ignore": [
"react-native"
]
}
}