-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
105 lines (105 loc) · 2.99 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
99
100
101
102
103
104
105
{
"main": "index.js",
"scripts": {
"android": "react-native run-android",
"ios": "react-native run-ios",
"web": "expo start --web",
"start": "react-native start",
"test": "jest --silent",
"lint": "eslint --fix './src/**/*.{ts,tsx}'"
},
"dependencies": {
"@react-native-community/masked-view": "^0.1.10",
"@react-navigation/drawer": "^5.5.0",
"@react-navigation/native": "^5.1.6",
"@react-navigation/stack": "^5.2.13",
"@types/react-native-orientation": "^5.0.1",
"@types/react-test-renderer": "^16.9.2",
"acorn": "^7.1.1",
"eslint": "^6.8.0",
"expo": "~37.0.7",
"expo-cli": "^3.19.0",
"expo-updates": "~0.1.2",
"graphql": "^0.11.3",
"react": "~16.13.1",
"react-native": "^0.62.2",
"react-native-error-boundary": "^1.1.0",
"react-native-gesture-handler": "^1.6.1",
"react-native-localization": "^2.1.6",
"react-native-localize": "^1.4.0",
"react-native-orientation": "^3.1.3",
"react-native-paper": "^3.8.0",
"react-native-reanimated": "^1.8.0",
"react-native-safe-area-context": "^0.7.3",
"react-native-screens": "^2.5.0",
"react-native-unimodules": "~0.9.0",
"react-native-web": "~0.12.2",
"react-test-renderer": "^16.13.1",
"watchman": "^1.0.0"
},
"devDependencies": {
"@babel/core": "~7.9.0",
"@types/enzyme": "^3.10.5",
"@types/enzyme-adapter-react-16": "^1.0.6",
"@types/jest": "^25.2.1",
"@types/react": "^16.9.34",
"@types/react-native": "^0.62.3",
"@typescript-eslint/eslint-plugin": "^2.29.0",
"@typescript-eslint/parser": "^2.29.0",
"babel-plugin-module-resolver": "^4.0.0",
"babel-preset-expo": "~8.1.0",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.2",
"eslint-config-prettier": "^6.11.0",
"eslint-config-react": "^1.1.7",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-react": "^7.19.0",
"husky": "^4.2.5",
"jest": "^25.4.0",
"jest-expo": "~37.0.0",
"jest-fetch-mock": "^3.0.3",
"prettier": "^2.0.5",
"react-dom": "~16.11.0",
"ts-jest": "^25.4.0",
"tslib": "^1.11.1",
"tsutils": "^3.17.1",
"typescript": "^3.8.3"
},
"jest": {
"preset": "react-native",
"transform": {
"^.+\\.js$": "./node_modules/react-native/jest/preprocessor.js",
"^.+\\.tsx?$": "ts-jest"
},
"transformIgnorePatterns": [
"node_modules/(?!(jest-)?react-native|react-navigation|react-navigation-redux-helpers|@react-navigation/.*)"
],
"globals": {
"ts-jest": {
"tsConfig": "tsconfig.jest.json"
}
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
],
"modulePaths": [
"./"
],
"setupFiles": [
"./tests/setup.js",
"./node_modules/react-native-gesture-handler/jestSetup.js"
]
},
"husky": {
"hooks": {
"pre-push": "npm run lint && npm test"
}
},
"private": true
}