-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.91 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
{
"name": "DemoApp",
"version": "0.0.1",
"private": true,
"scripts": {
"start": "node node_modules/react-native/local-cli/cli.js start",
"lint": "./node_modules/.bin/eslint .",
"test": "jest"
},
"dependencies": {
"@react-native-community/async-storage": "^1.5.0",
"appcenter": "^2.1.0",
"appcenter-analytics": "^2.1.0",
"appcenter-auth": "^2.1.0",
"appcenter-crashes": "^2.1.0",
"appcenter-push": "^2.1.0",
"metro": "^0.54.1",
"react": "16.8.3",
"react-native": "0.59.9",
"react-native-fs": "^2.9.12",
"react-native-gesture-handler": "^1.1.0",
"react-native-image-picker": "^0.28.0",
"react-native-modal-selector": "^1.0.2",
"react-native-simple-toast": "0.0.8",
"react-navigation": "^3.5.1",
"stacktrace-parser": "^0.1.4"
},
"devDependencies": {
"@babel/core": "^7.4.5",
"@babel/runtime": "^7.4.5",
"babel-jest": "^24.8.0",
"jest": "^24.8.0",
"metro-react-native-babel-preset": "^0.54.1",
"@react-native-community/eslint-config": "0.0.3",
"eslint": "5.15.3",
"react-test-renderer": "16.8.3",
"@babel/plugin-external-helpers": "7.2.0",
"babel-eslint": "8.2.3",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-react": "^7.2.1"
},
"jest": {
"preset": "react-native",
"verbose": true,
"setupFilesAfterEnv": [
"./jest/setup.js"
],
"setupFiles": [
"<rootDir>/node_modules/appcenter/test/AppCenterMock.js",
"<rootDir>/node_modules/appcenter-analytics/test/AppCenterAnalyticsMock.js",
"<rootDir>/node_modules/appcenter-crashes/test/AppCenterCrashesMock.js",
"<rootDir>/node_modules/appcenter-push/test/AppCenterPushMock.js"
],
"transformIgnorePatterns": [
"!node_modules/react-native"
],
"transform": {
"^.+\\.js$": "<rootDir>/jest/preprocessor.js"
}
}
}