-
Notifications
You must be signed in to change notification settings - Fork 143
/
package.json
98 lines (98 loc) · 3.21 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
{
"name": "growth",
"version": "0.0.1",
"private": true,
"scripts": {
"start": "node node_modules/react-native/local-cli/cli.js start",
"test": "jest",
"lint": "eslint --ext .jsx,.js --fix ./src"
},
"dependencies": {
"axios": "^0.16.1",
"events": "^1.1.1",
"highlightjs": "^9.10.0",
"htmlparser2-without-node-native": "^3.9.0",
"lodash.filter": "^4.6.0",
"lodash.isobject": "^3.0.2",
"lodash.values": "^4.3.0",
"markdown-it": "^8.3.1",
"moment": "^2.18.1",
"prop-types": "^15.5.10",
"randomcolor": "^0.5.3",
"react": "16.0.0-alpha.6",
"react-native": "^0.44.3",
"react-native-action-button": "^2.7.1",
"react-native-animatable": "^1.2.0",
"react-native-app-intro": "^1.1.5",
"react-native-collapsible": "^0.8.0",
"react-native-device-info": "^0.10.2",
"react-native-dropdown": "^0.0.6",
"react-native-elements": "^0.13.0",
"react-native-fetch-blob": "^0.10.5",
"react-native-fs": "^2.3.2",
"react-native-google-analytics-bridge": "^5.0.1",
"react-native-htmlview": "^0.9.0",
"react-native-infinite-scroll-view": "^0.4.2",
"react-native-interactable": "^0.0.9",
"react-native-looped-carousel": "^0.1.7",
"react-native-modalbox": "^1.3.9",
"react-native-orientation": "git+https://github.com/yamill/react-native-orientation.git",
"react-native-progress": "^3.2.1",
"react-native-router-flux": "3.39.2",
"react-native-search-box": "^0.0.9",
"react-native-share": "^1.0.20",
"react-native-simple-toast": "0.0.6",
"react-native-snap-carousel": "^2.3.0",
"react-native-spinkit": "^1.0.2",
"react-native-splash-screen": "^2.0.0",
"react-native-store-review": "^0.1.2",
"react-native-swipe-gestures": "^1.0.2",
"react-native-swiper": "^1.5.4",
"react-native-tab-view": "^0.0.65",
"react-native-timeago": "^0.3.0",
"react-native-vector-icons": "~4.2.0",
"react-native-zip-archive": "^2.0.0",
"react-redux": "^5.0.1",
"redux": "^3.6.0",
"redux-logger": "^2.7.4",
"redux-thunk": "^2.2.0",
"shortid": "^2.2.8",
"tcomb-form-native": "^0.6.9"
},
"devDependencies": {
"babel-eslint": "^7.2.3",
"babel-jest": "19.0.0",
"babel-preset-react-native": "1.9.1",
"chai": "^3.5.0",
"coveralls": "^2.13.1",
"enzyme": "^2.8.2",
"eslint": "^3.19.0",
"eslint-config-airbnb": "^14.1.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-react": "^6.10.3",
"jest": "^20.0.4",
"react-addons-test-utils": "16.0.0-alpha.3",
"react-dom": "16.0.0-alpha.6",
"react-test-renderer": "16.0.0-alpha.6",
"redux-mock-store": "^1.2.3"
},
"jest": {
"preset": "react-native",
"setupFiles": [
"<rootDir>/jest.setup.js"
],
"testMatch": [
"**/__tests__/**/*.test.js?(x)",
"**/?(*.)(spec|test).js?(x)"
],
"transformIgnorePatterns": [
"node_modules/(?!react-native|tcomb-form-native|apsl-react-native-button,react-native-device-info,react-native-device-info|react-clone-referenced-element)"
],
"moduleNameMapper": {
"\\.html$": "<rootDir>/__tests__/helpers/html-transform.js"
},
"collectCoverage": true,
"verbose": true
}
}