forked from NSWSESMembers/availability-poc
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 2.88 KB
/
Copy pathpackage.json
File metadata and controls
93 lines (93 loc) · 2.88 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
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
{
"name": "Callout",
"version": "0.0.1",
"private": true,
"scripts": {
"start": "react-native start",
"test": "TZ=UTC jest",
"test-and-coverage": "TZ=UTC jest --maxWorkers=4 --coverage && codecov -F unittests",
"push-ios": "code-push release-react availability-poc-ios ios",
"push-android": "code-push release-react availability-poc-android android",
"run-ios": "react-native run-ios",
"run-android": "adb reverse tcp:8080 tcp:8080 && react-native run-android",
"lint": "eslint src"
},
"dependencies": {
"apollo-cache-inmemory": "^1.2.1",
"apollo-client": "^2.3.1",
"apollo-link": "^1.2.2",
"apollo-link-error": "^1.0.9",
"apollo-link-http": "^1.5.4",
"babel-core": "^6.26.0",
"buffer": "^5.0.7",
"bugsnag-react-native": "~2.9.1",
"expo": "^23.0.2",
"graphql": "^0.11.0",
"graphql-tag": "^2.5.0",
"immutability-helper": "^2.3.0",
"lodash": "^4.17.4",
"md5": "^2.2.1",
"moment": "^2.18.1",
"prop-types": "^15.6.0",
"randomcolor": "^0.5.3",
"react": "16.3.1",
"react-apollo": "^1.4.16",
"react-native": "0.55.3",
"react-native-alphabetlistview": "^0.2.0",
"react-native-check-box": "^2.1.0",
"react-native-code-push": "^5.2.0-beta",
"react-native-device-info": "^0.21.5",
"react-native-elements": "^0.19.0",
"react-native-firebase": "^4.0.5",
"react-native-maps": "^0.18.2",
"react-native-modal-datetime-picker": "^4.13.0",
"react-native-modal-selector": "0.0.24",
"react-native-prompt": "https://github.com/OSPFNeighbour/react-native-prompt.git",
"react-native-segmented-control-tab": "^3.2.2",
"react-native-select-multiple": "^1.2.0",
"react-native-super-grid": "^2.1.0",
"react-native-vector-icons": "^4.4.2",
"react-navigation": "^1.5.11",
"react-redux": "^5.0.5",
"redux": "^3.7.2",
"redux-persist": "^5.4.0",
"redux-thunk": "^2.2.0",
"seamless-immutable": "^7.1.2",
"subscriptions-transport-ws": "^0.9.1"
},
"devDependencies": {
"babel-eslint": "^8.0.2",
"babel-jest": "^21.2.0",
"babel-preset-react-native": "^4.0.0",
"code-push-cli": "^2.1.8",
"codecov": "^3.0.0",
"eslint": "^4.11.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-react": "^7.5.1",
"jest": "^21.2.1",
"moment-timezone": "^0.5.16",
"react-test-renderer": "^16.1.1"
},
"jest": {
"preset": "react-native",
"testMatch": [
"**/__tests__/**/*.js",
"**/?(*.)(spec|test).js?(x)"
],
"testPathIgnorePatterns": [
"/node_modules/",
"__tests__/setup.js",
"__tests__/fixtures/"
],
"transformIgnorePatterns": [
"node_modules/(?!react-native|react-navigation)/"
],
"coverageDirectory": "./coverage/",
"collectCoverageFrom": [
"src/**/*.js",
"*.js"
]
}
}