-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
129 lines (129 loc) · 4.69 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
{
"name": "trucker",
"version": "0.0.1",
"private": true,
"scripts": {
"preinstall": "node tools/forceYarn.js",
"postinstall": "node tools/init.js && node tools/postinstallFixes.js",
"ts": "tsc -p .",
"tsw": "yarn run ts --watch",
"start": "node node_modules/react-native/local-cli/cli.js start",
"start-reset-cache": "node node_modules/react-native/local-cli/cli.js start -- --reset-cache",
"android:start": "node node_modules/react-native/local-cli/cli.js run-android --no-packager",
"android:start+start": "node node_modules/react-native/local-cli/cli.js run-android --no-packager && node node_modules/react-native/local-cli/cli.js start",
"build-release-apk": "(cd android/ && gradlew assembleRelease)",
"clean-android": "(cd android/ && gradlew clean)",
"bundle-android": "node node_modules/react-native/local-cli/cli.js bundle --platform android --entry-file index.js --bundle-output android/app/src/main/assets/index.android.bundle --sourcemap-output android/app/src/main/assets/index.android.map --assets-dest android/app/src/main/res/ --dev false --sourcemap-sources-root=build",
"ios:start": "node node_modules/react-native/local-cli/cli.js run-ios --no-packager",
"check-dependencies-updates": "yarn outdated",
"tests": "jest",
"tests:watch": "jest --watchAll",
"upload-bugsnag": "node tools/uploadBugsnag.js",
"upload-bugsnag:test": "node tools/uploadBugsnag.js --platform=android",
"lint": "tslint \"src/**/*.ts\"",
"lint-teamcity": "tslint --formatters-dir node_modules/tslint-teamcity-reporter/ --format TSHintTeamcity \"src/**/*.ts\"",
"config-setup": "node tools/config-setup.js",
"ResourcesGenerator": "generator --dir=resources/images --out=src/common/ImageResources.g.ts"
},
"dependencies": {
"@react-native-community/async-storage": "1.2.4",
"@react-native-community/geolocation": "^2.0.2",
"@types/react-native-snap-carousel": "^3.7.4",
"@types/redux": "^3.6.0",
"bugsnag-react-native": "2.23.2",
"jwt-decode": "2.2.0",
"lodash": "4.17.15",
"moment": "2.24.0",
"react": "16.8.6",
"react-native": "0.59.4",
"react-native-animated-flatlist": "^0.0.3",
"react-native-dev-menu": "2.0.2",
"react-native-gesture-handler": "^1.5.1",
"react-native-localization": "2.1.6",
"react-native-maps": "0.26.1",
"react-native-paper": "^3.2.1",
"react-native-permissions": "^2.0.9",
"react-native-reanimated": "^1.4.0",
"react-native-simple-toast": "0.1.1",
"react-native-snap-carousel": "^3.8.4",
"react-native-switch-selector": "^2.0.0",
"react-native-tab-view": "^2.11.0",
"react-navigation": "3.6.1",
"react-navigation-redux-helpers": "3.0.0",
"react-redux": "7.1.1",
"redux": "4.0.4",
"redux-logger": "3.0.6",
"redux-persist": "6.0.0",
"redux-promise": "0.6.0",
"redux-stack": "1.0.1",
"redux-thunk": "2.3.0",
"reflect-metadata": "0.1.13",
"reselect": "4.0.0",
"rn-fetch-blob": "0.11.2",
"typescript-fsa": "3.0.0",
"typescript-fsa-reducers": "1.2.1",
"uuid": "3.3.3"
},
"devDependencies": {
"@babel/core": "7.4.3",
"@babel/runtime": "7.4.4",
"@types/jest": "24.0.19",
"@types/lodash": "4.14.144",
"@types/react": "^16.9.11",
"@types/react-native": "^0.60.22",
"@types/react-redux": "7.1.4",
"@types/redux-logger": "3.0.7",
"@types/redux-promise": "0.5.28",
"babel-jest": "24.7.1",
"bugsnag-sourcemaps": "1.2.1",
"command-line-args": "5.1.1",
"command-line-usage": "6.0.2",
"gulp-hockeyapp": "0.2.4",
"husky": "3.0.9",
"image-resource-generator": "git+http://git.dextechnology.com/rn-components/image-resource-generator.git#master",
"jest": "24.7.1",
"jest-teamcity-reporter": "0.9.0",
"jetifier": "^1.6.5",
"load-json-file": "6.2.0",
"metro-react-native-babel-preset": "0.53.1",
"react-test-renderer": "16.8.6",
"ts-jest": "24.0.2",
"tslint": "5.20.0",
"tslint-react": "4.1.0",
"tslint-teamcity-reporter": "3.2.2",
"typescript": "3.6.4",
"write-json-file": "4.2.0"
},
"jest": {
"preset": "react-native",
"testPathIgnorePatterns": [
"node_modules"
],
"transform": {
"^.+\\.js$": "<rootDir>/node_modules/react-native/jest/preprocessor.js",
"\\.(ts|tsx)$": "ts-jest"
},
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$",
"testResultsProcessor": "jest-teamcity-reporter",
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"globals": {
"ts-jest": {
"tsConfig": "tsconfig.jest.json"
}
}
},
"rnpm": {
"assets": [
"./resources/fonts"
]
},
"husky": {
"hooks": {
"pre-push": "yarn run ts"
}
}
}