-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 2.99 KB
/
package.json
File metadata and controls
92 lines (92 loc) · 2.99 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
{
"name": "FifthEditionManager",
"version": "1.0.0-alpha",
"private": true,
"devDependencies": {
"@babel/plugin-transform-react-jsx-source": "^7.7.4",
"babel-eslint": "10.0.3",
"babel-jest": "24.9.0",
"babel-preset-expo": "8.0.0",
"enzyme": "^3.10.0",
"enzyme-adapter-react-16": "^1.15.1",
"enzyme-to-json": "^3.4.3",
"eslint": "6.8.0",
"eslint-config-airbnb": "18.0.1",
"eslint-import-resolver-reactnative": "^1.0.2",
"eslint-plugin-import": "^2.9.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.7.0",
"eslint-plugin-react-native": "^3.2.1",
"identity-obj-proxy": "^3.0.0",
"jest-expo": "^36.0.0",
"react-dom": "16.9.0",
"react-native-mock-render": "0.1.7",
"react-test-renderer": "16.12.0",
"sinon": "8.0.1"
},
"main": "./node_modules/expo/AppEntry.js",
"scripts": {
"start": "expo start",
"eject": "expo eject",
"android": "expo start --android",
"ios": "expo start --ios",
"lint": "node node_modules/eslint/bin/eslint.js './**/*.js'",
"test": "yarn run jest:coverage && yarn run lint",
"jest": "node_modules/.bin/jest",
"jest:watch": "node_modules/.bin/jest --watch",
"jest:coverage": "node_modules/.bin/jest --coverage"
},
"jest": {
"preset": "jest-expo",
"transform": {
"\\.js$": "<rootDir>/node_modules/react-native/jest/preprocessor.js"
},
"coveragePathIgnorePatterns": [
"/node_modules/",
"/assets/",
"/__tests__/",
"/jest/"
],
"coverageReporters": [
"html",
"lcov"
],
"coverageDirectory": "./coverage",
"transformIgnorePatterns": [
"node_modules/(?!(jest-)?react-native|react-clone-referenced-element|@react-native-community|expo(nent)?|@expo(nent)?/.*|react-navigation|@react-navigation/.*|@unimodules/.*|sentry-expo|native-base|tcomb-form-native|@expo/vector-icons|native-base-shoutem-theme|@shoutem/theme|@shoutem/animation|@shoutem/ui|unimodules-permissions-interface)"
],
"setupFiles": [
"./jest/setup.js"
],
"snapshotSerializers": [
"enzyme-to-json/serializer"
],
"moduleNameMapper": {
"^.+\\.(css|scss)$": "identity-obj-proxy"
}
},
"dependencies": {
"@expo/vector-icons": "^10.0.0",
"@react-native-community/async-storage": "^1.7.1",
"chance": "^1.0.13",
"expo": "^36.0.0",
"expo-asset": "~8.0.0",
"expo-font": "~8.0.0",
"lodash": "^4.17.5",
"moment": "^2.20.1",
"native-base": "^2.13.8",
"prop-types": "^15.6.0",
"react": "16.9.0",
"react-native": "https://github.com/expo/react-native/archive/sdk-36.0.1.tar.gz",
"react-native-gesture-handler": "~1.5.0",
"react-native-material-ui": "2.0.0-alpha.1",
"react-native-modal": "^11.5.3",
"react-native-navigation": "^4.0.9",
"react-native-progress": "^4.0.3",
"react-native-simple-store": "^1.3.0",
"react-navigation": "4.0.10",
"react-navigation-stack": "^1.10.3",
"tcomb-form-native": "^0.6.11",
"uuid": "^3.2.1"
}
}