-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
96 lines (96 loc) · 2.84 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
{
"name": "PennyWatchers",
"version": "0.0.1",
"private": true,
"scripts": {
"start": "node node_modules/react-native/local-cli/cli.js start",
"test": "jest",
"tsc": "tsc",
"precommit": "lint-staged"
},
"dependencies": {
"@react-native-community/async-storage": "^1.2.4",
"appcenter": "^1.12.2",
"appcenter-analytics": "^1.12.2",
"appcenter-crashes": "^1.12.2",
"electron": "^6.0.12",
"lodash": "^4.17.11",
"native-base": "^2.12.0",
"react": "^16.8.4",
"react-native": "^0.59.1",
"react-native-animatable": "^1.3.2",
"react-native-calendar-strip": "^1.3.8",
"react-native-code-push": "^5.6.0",
"react-native-datepicker": "^1.7.2",
"react-native-final-tree-view": "^2.0.1",
"react-native-floating-action": "^1.14.2",
"react-native-image-crop-picker": "^0.23.0",
"react-native-iphone-x-helper": "^1.2.0",
"react-native-keyboard-aware-scroll-view": "^0.8.0",
"react-native-masked-text": "^1.12.2",
"react-native-permissions": "^2.0.0-alpha.1",
"react-native-photo-view-ex": "^1.0.4",
"react-native-sentry": "^0.42.0",
"react-native-snap-carousel": "^3.7.5",
"react-native-splash-screen": "^3.2.0",
"react-navigation": "^3.3.2",
"react-redux": "^6.0.1",
"redux": "^4.0.1",
"redux-observable": "^1.0.0",
"redux-saga": "^1.0.2"
},
"lint-staged": {
"**/*.{ts,tsx}": [
"prettier --write --parser typescript --single-quote --trailing-comma all",
"tslint --fix",
"git add"
]
},
"devDependencies": {
"@types/jest": "^24.0.9",
"@types/lodash": "^4.14.122",
"@types/react": "^16.8.7",
"@types/react-native": "^0.57.38",
"@types/react-native-autocomplete-input": "^4.0.1",
"@types/react-native-calendars": "^1.20.5",
"@types/react-native-datepicker": "^1.7.0",
"@types/react-native-permissions": "^1.1.1",
"@types/react-native-snap-carousel": "^3.7.1",
"@types/react-navigation": "^3.0.4",
"@types/react-redux": "^7.0.2",
"@types/react-test-renderer": "^16.8.1",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "24.1.0",
"husky": "^1.3.1",
"jest": "24.1.0",
"lint-staged": "^8.1.5",
"metro-react-native-babel-preset": "^0.53.1",
"prettier": "^1.16.4",
"react-native-gesture-handler": "1.0.16",
"react-test-renderer": "16.6.3",
"ts-jest": "^24.0.0",
"tslint": "^5.13.1",
"tslint-config-airbnb": "^5.11.1",
"tslint-config-prettier": "^1.18.0",
"tslint-react": "^3.6.0",
"typescript": "^3.3.3333"
},
"jest": {
"preset": "react-native",
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
],
"modulePaths": [
"<rootDir>"
]
}
}