forked from coopcycle/coopcycle-app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 2.64 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
{
"name": "CoopCycle",
"version": "0.0.1",
"private": true,
"scripts": {
"start": "node node_modules/react-native/local-cli/cli.js start",
"test": "jest",
"postinstall": "wget https://github.com/alexsegura/react-native-background-geolocation/commit/57da62e91bd087396e6e7a2f47ce5fa00ce1f6cb.patch && patch $PWD/node_modules/react-native-mauron85-background-geolocation/ios/RCTBackgroundGeolocation/RCTBackgroundGeolocation.m 57da62e91bd087396e6e7a2f47ce5fa00ce1f6cb.patch && rm -f 57da62e91bd087396e6e7a2f47ce5fa00ce1f6cb.patch"
},
"dependencies": {
"@mapbox/polyline": "^0.2.0",
"google-libphonenumber": "^3.1.3",
"i18next": "^10.4.1",
"lodash": "^4.17.10",
"moment": "^2.19.2",
"native-base": "^2.4.0",
"react": "^16.3.1",
"react-i18next": "^7.4.0",
"react-native": "0.55.4",
"react-native-cache-store": "^1.0.2",
"react-native-calendars": "^1.17.1",
"react-native-check-notification-enable": "^1.0.4",
"react-native-communications": "^2.2.1",
"react-native-firebase": "^4.2.0",
"react-native-google-places-autocomplete": "^1.3.6",
"react-native-i18n": "^2.0.12",
"react-native-keep-awake": "^2.0.6",
"react-native-maps": "0.21.0",
"react-native-mauron85-background-geolocation": "^0.5.0-alpha.34",
"react-native-modal-selector": "^0.0.24",
"react-native-open-settings": "^1.0.1",
"react-native-pin-screen": "git+https://[email protected]/coopcycle/react-native-pin-screen.git#1.0.1",
"react-native-swipeout": "^2.3.3",
"react-navigation": "^1.5.1",
"react-redux": "^5.0.7",
"redux": "^3.7.2",
"redux-actions": "^2.2.1",
"redux-devtools-extension": "^2.13.2",
"redux-logger": "^3.0.6",
"redux-thunk": "^2.2.0",
"reselect": "^3.0.1",
"slugify": "^1.1.0",
"tipsi-stripe": "4.6.3",
"validate.js": "^0.12.0"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-jest": "18.0.0",
"babel-preset-react-native": "1.9.1",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"enzyme-to-json": "^3.3.1",
"jest": "^23.0.0",
"jest-fetch-mock": "^1.4.2",
"mock-async-storage": "^2.0.2",
"react-dom": "^16.3.1",
"react-test-renderer": "^16.3.1"
},
"jest": {
"preset": "react-native",
"setupFiles": [
"./jestSetup.js"
],
"snapshotSerializers": [
"enzyme-to-json/serializer"
],
"transform": {
"^.+\\.jsx?$": "babel-jest"
},
"transformIgnorePatterns": [
"node_modules/(?!react-native|react-navigation|native-base-shoutem-theme|@shoutem/animation|@shoutem/ui|tcomb-form-native)"
]
},
"rnpm": {
"assets": [
"./assets/fonts"
]
}
}