-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
85 lines (85 loc) · 2.48 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
{
"name": "igumail-mobile",
"version": "0.1.0",
"private": true,
"main": "./node_modules/react-native-scripts/build/bin/crna-entry.js",
"scripts": {
"web": "react-app-rewired start",
"build:web": "react-app-rewired build",
"eject:web": "react-app-rewired eject",
"dev": "react-native-scripts start --reset-cache",
"start": "react-native-scripts start",
"eject-native": "react-native-scripts eject",
"android": "react-native-scripts android",
"ios": "react-native-scripts ios",
"test": "jest"
},
"react-native": {
"./src/lib/expo": "./node_modules/expo"
},
"dependencies": {
"buffer": "^5.1.0",
"color-hash": "^1.0.3",
"debug": "^3.1.0",
"eventemitter2": "^5.0.1",
"expo": "^27.0.2",
"mobx": "^4.3.0",
"mobx-react": "^5.1.2",
"moment": "^2.22.1",
"mqtt": "^2.18.0",
"react": "16.3.1",
"react-app-rewire-mobx": "^1.0.8",
"react-dom": "^16.2.0",
"react-native": "^0.55.0",
"react-native-elements": "^0.19.1",
"react-native-render-html": "^3.10.0",
"react-native-side-menu": "^1.1.3",
"react-native-storage": "^0.2.2",
"react-native-swipeout": "^2.3.3",
"react-native-swiper-animated": "^1.3.1",
"react-native-web": "^0.3.2",
"react-native-web-webview": "^0.2.5",
"react-router-dom": "^4.3.1",
"react-router-native": "^4.2.0",
"react-scripts": "1.1.0",
"svgs": "^3.1.2"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-decorators-legacy": "^1.3.5",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-react-jsx-source": "^6.22.0",
"babel-preset-expo": "^4.0.0",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"enzyme-to-json": "^3.3.1",
"flow-bin": "^0.64.0",
"jest": "^22.1.4",
"jest-expo": "^25.1.0",
"jsdom": "^11.6.2",
"react-app-rewire-babel-loader": "^0.1.1",
"react-app-rewired": "^1.4.1",
"react-native-scripts": "^1.11.1",
"react-test-renderer": "^16.2.0"
},
"jest": {
"coverageDirectory": "./coverage/",
"collectCoverageFrom": [
"src/**/*.js",
"!src/**/__tests__/*.js",
"!src/web/**",
"!src/index.js",
"!src/helpers/*.js"
],
"collectCoverage": true,
"preset": "jest-expo",
"setupTestFrameworkScriptFile": "<rootDir>/testFrameworkSetup.js"
},
"license": "ISC",
"rnpm": {
"assets": [
"./assets/fonts"
]
}
}