-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 2.19 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 2.19 KB
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
{
"name": "topek",
"version": "0.0.1",
"private": true,
"scripts": {
"start": "node node_modules/react-native/local-cli/cli.js start",
"ios": "react-native run-ios --simulator=\"iPhone 7\" --configuration Debug",
"ios7": "react-native run-ios --simulator=\"iPhone 7\" --configuration Debug",
"ios7plus": "react-native run-ios --simulator=\"iPhone 7 Plus\" --configuration Debug",
"android": "react-native run-android",
"test": "jest"
},
"dependencies": {
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"immutable": "^3.8.1",
"moment": "^2.17.1",
"parse": "^1.9.2",
"react": "~15.4.0",
"react-native": "0.42.0",
"react-native-actionsheet": "^2.0.5",
"react-native-cached-image": "^1.2.5",
"react-native-calendar": "^0.10.0",
"react-native-fields": "github:markkup/react-native-fields",
"react-native-gifted-chat": "^0.1.3",
"react-native-google-places-autocomplete": "^1.2.8",
"react-native-image-crop-picker": "^0.12.10",
"react-native-loading-spinner-overlay": "^0.4.1",
"react-native-maps": "0.13.0",
"react-native-push-notification": "^2.2.1",
"react-native-radio-buttons": "^0.14.0",
"react-native-root-modal": "^1.1.0",
"react-native-scrollable-tab-view": "^0.6.5",
"react-native-search-box": "^0.0.3",
"react-native-sortable-listview": "^0.2.2",
"react-native-swipe-list-view": "^0.4.1",
"react-native-vector-icons": "^4.0.0",
"react-navigation": "^1.0.0-beta.7",
"react-redux": "^5.0.2",
"react-redux-propmap": "github:markkup/react-redux-propmap",
"redux": "^3.6.0",
"redux-logger": "^2.8.1",
"redux-persist": "^4.1.1",
"redux-thunk": "^2.2.0",
"reselect": "^3.0.0"
},
"devDependencies": {
"babel-jest": "18.0.0",
"babel-preset-react-native": "1.9.1",
"jest": "18.1.0",
"react-test-renderer": "~15.4.0",
"redux-mock-store": "^1.2.2"
},
"jest": {
"preset": "react-native",
"transformIgnorePatterns": [
"node_modules/(?!react-native|parse|react-redux-propmap|react-navigation)"
],
"collectCoverage": true,
"verbose": false,
"moduleNameMapper": {
"^parse/(.*)": "<rootDir>/__mocks__/parse-$1.js"
}
}
}