-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathpackage.json
64 lines (64 loc) · 1.95 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
{
"name": "ModularApp",
"version": "0.0.1",
"private": true,
"scripts": {
"start": "node node_modules/react-native/local-cli/cli.js start",
"test": "jest",
"ios": "react-native run-ios",
"ios-bundle": "react-native bundle --platform ios --entry-file index.js --bundle-output ./ios/main.jsbundle --sourcemap-output ./ios/sourcemap.js.map",
"ios-analyze": "source-map-explorer ./ios/main.jsbundle",
"android": "react-native run-android",
"android-bundle": "react-native bundle --platform ios --entry-file index.js --bundle-output ./android/main.jsbundle --sourcemap-output ./android/sourcemap.js.map",
"android-analyze": "source-map-explorer ./android/main.jsbundle"
},
"dependencies": {
"axios": "^0.18.0",
"lodash": "^4.17.11",
"native-base": "^2.11.0",
"react": "16.6.3",
"react-native": "0.58.3",
"react-native-gesture-handler": "^1.0.15",
"react-native-linear-gradient": "^2.5.3",
"react-native-motion": "^1.0.0",
"react-navigation": "^3.1.5",
"source-map-explorer": "^1.7.0"
},
"devDependencies": {
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "24.1.0",
"enzyme": "^3.8.0",
"enzyme-adapter-react-16": "^1.9.1",
"jest": "24.1.0",
"jest-fetch-mock": "^2.1.0",
"jest-mock-axios": "^2.1.11",
"jsdom": "^13.2.0",
"metro-react-native-babel-preset": "0.51.1",
"react-test-renderer": "16.6.3"
},
"jest": {
"preset": "react-native",
"transform": {
"^.+\\.js$": "<rootDir>/node_modules/react-native/jest/preprocessor.js"
},
"transformIgnorePatterns": [
"node_modules/(?!react-native|native-base|react-navigation)"
],
"testMatch": [
"<rootDir>/__tests__/**/*.test.js?(x)",
"<rootDir>/src/**/*.test.js"
],
"testPathIgnorePatterns": [
"/node_modules/",
"<rootDir>/e2e"
],
"setupFiles": [
"<rootDir>/jest/setup.js"
]
},
"rnpm": {
"assets": [
"./src/assets/fonts/"
]
}
}